forked from moveit/panda_moveit_config
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes STOMP from default planning algorithms
This commit removes the STOMP planner from the default supported planner since the https://github.com/ros-industrial/stomp_ros package can not be added as a dependency yet (i.e. the ROS noetic release is not yet available).
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
<launch> | ||
|
||
<!-- Stomp Plugin for MoveIt! --> | ||
<arg name="planning_plugin" value="stomp_moveit/StompPlannerManager" /> | ||
|
||
<!-- The request adapters (plugins) ORDER MATTERS --> | ||
<arg name="planning_adapters" value="default_planner_request_adapters/AddTimeParameterization | ||
<arg name="start_state_max_bounds_error" value="0.1" /> | ||
<arg name="jiggle_fraction" value="0.05" /> | ||
<!-- The request adapters (plugins) used when planning. | ||
ORDER MATTERS --> | ||
<arg name="planning_adapters" default="default_planner_request_adapters/AddTimeParameterization | ||
default_planner_request_adapters/FixWorkspaceBounds | ||
default_planner_request_adapters/FixStartStateBounds | ||
default_planner_request_adapters/FixStartStateCollision | ||
default_planner_request_adapters/FixStartStatePathConstraints" /> | ||
|
||
<arg name="start_state_max_bounds_error" value="0.1" /> | ||
|
||
<param name="planning_plugin" value="$(arg planning_plugin)" /> | ||
<param name="request_adapters" value="$(arg planning_adapters)" /> | ||
<param name="start_state_max_bounds_error" value="$(arg start_state_max_bounds_error)" /> | ||
<rosparam command="load" file="$(find panda_moveit_config)/config/stomp_planning.yaml"/> | ||
<param name="jiggle_fraction" value="$(arg jiggle_fraction)" /> | ||
|
||
<!-- Add MoveGroup capabilities specific to this pipeline --> | ||
<!-- <param name="capabilities" value="" /> --> | ||
|
||
</launch> | ||
<rosparam command="load" file="$(find panda_moveit_config)/config/stomp_planning.yaml"/> | ||
</launch> |