File tree 1 file changed +2
-4
lines changed
doc/how_to_guides/planner_cost_functions/src
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -263,9 +263,8 @@ class Demo
263
263
{
264
264
planning_component_->setStateCostFunction (
265
265
[robot_start_state, group_name, planning_scene](const Eigen::VectorXd& state_vector) mutable {
266
- // rviz_visual_tools::MEDIUM); this->getVisualTools().trigger();
267
266
auto clearance_cost_fn =
268
- moveit::cost_functions::getClearanceCostFn (*robot_start_state, group_name, planning_scene);
267
+ moveit::cost_functions::getMinJointDisplacementCostFn (*robot_start_state, group_name, planning_scene);
269
268
return clearance_cost_fn (state_vector);
270
269
});
271
270
}
@@ -286,8 +285,7 @@ class Demo
286
285
if (plan_solution.trajectory )
287
286
{
288
287
RCLCPP_INFO_STREAM (LOGGER, plan_solution.planner_id .c_str ()
289
- << " , " << std::to_string (plan_solution.use_cost_function ) << " : "
290
- << colorToString (rviz_visual_tools::Colors (color_index)));
288
+ << " : " << colorToString (rviz_visual_tools::Colors (color_index)));
291
289
// Visualize the trajectory in Rviz
292
290
visual_tools_.publishTrajectoryLine (plan_solution.trajectory , joint_model_group_ptr,
293
291
rviz_visual_tools::Colors (color_index));
You can’t perform that action at this time.
0 commit comments