Skip to content

Commit 1049ef9

Browse files
committed
Use stomp + cleanup
1 parent 0fea300 commit 1049ef9

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

Diff for: doc/examples/moveit_cpp/config/moveit_cpp.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ planning_scene_monitor_options:
99

1010
planning_pipelines:
1111
#namespace: "moveit_cpp" # optional, default is ~
12-
pipeline_names: ["ompl"]
12+
pipeline_names: ["stomp"]
1313

1414
plan_request_params:
1515
planning_attempts: 1
16-
planning_pipeline: ompl
16+
planning_pipeline: stomp
17+
planner_id: "stomp"
1718
max_velocity_scaling_factor: 1.0
1819
max_acceleration_scaling_factor: 1.0

Diff for: doc/examples/moveit_cpp/launch/moveit_cpp_tutorial.launch.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ def generate_launch_description():
1111
MoveItConfigsBuilder("moveit_resources_panda")
1212
.robot_description(file_path="config/panda.urdf.xacro")
1313
.trajectory_execution(file_path="config/gripper_moveit_controllers.yaml")
14+
.planning_pipelines("stomp", ["stomp"])
1415
.moveit_cpp(
1516
file_path=get_package_share_directory("moveit2_tutorials")
1617
+ "/config/moveit_cpp.yaml"

Diff for: doc/how_to_guides/planner_cost_functions/src/planner_cost_functions_main.cpp

+2-8
Original file line numberDiff line numberDiff line change
@@ -270,14 +270,8 @@ int main(int argc, char** argv)
270270

271271
RCLCPP_INFO(LOGGER, "Starting MoveIt Tutorials...");
272272

273-
// Experiment 1 - Short free-space motion, Pilz is expected to create the fastest and shortest solution
274-
RCLCPP_INFO(LOGGER, "Experiment 1 - Short free-space motion");
275-
276-
demo.setJointGoal(0.0, -0.8144019900299497, 0.0, -2.6488387075338133, 0.0, 1.8344367175038623, 0.7849999829891612);
277-
demo.planAndPrint();
278-
279-
// Experiment 2 - Long motion with collisions, CHOMP and Pilz are likely to fail here due to the difficulty of the planning problem
280-
RCLCPP_INFO(LOGGER, "Experiment 2 - Long motion with collisions");
273+
// Experiment - Long motion with collisions, CHOMP and Pilz are likely to fail here due to the difficulty of the planning problem
274+
RCLCPP_INFO(LOGGER, "Experiment - Long motion with collisions");
281275
demo.setQueryGoal();
282276
demo.planAndPrint();
283277

0 commit comments

Comments
 (0)