@@ -71,12 +71,6 @@ PipelinePlanner::PipelinePlanner(
7171 properties ().declare <double >(" goal_position_tolerance" , 1e-4 , " tolerance for reaching position goals" );
7272 properties ().declare <double >(" goal_orientation_tolerance" , 1e-4 , " tolerance for reaching orientation goals" );
7373 // Declare properties that configure the planning pipeline
74- properties ().declare <bool >(" display_motion_plans" , false ,
75- " publish generated solutions on topic " +
76- planning_pipeline::PlanningPipeline::DISPLAY_PATH_TOPIC);
77- properties ().declare <bool >(" publish_planning_requests" , false ,
78- " publish motion planning requests on topic " +
79- planning_pipeline::PlanningPipeline::MOTION_PLAN_REQUEST_TOPIC);
8074 properties ().declare (" pipeline_id_planner_id_map" , pipeline_id_planner_id_map,
8175 " Set of pipelines and planners used for planning" );
8276}
@@ -135,12 +129,6 @@ void PipelinePlanner::init(const core::RobotModelConstPtr& robot_model) {
135129 }
136130 }
137131 }
138-
139- // Configure all pipelines according to the configuration in properties
140- for (auto const & name_pipeline_pair : planning_pipelines_) {
141- name_pipeline_pair.second ->displayComputedMotionPlans (properties ().get <bool >(" display_motion_plans" ));
142- name_pipeline_pair.second ->publishReceivedRequests (properties ().get <bool >(" publish_planning_requests" ));
143- }
144132}
145133
146134bool PipelinePlanner::plan (const planning_scene::PlanningSceneConstPtr& from,
0 commit comments