forked from moveit/moveit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Constraints Library Refactor (moveit#1428)
* Moved constraints library internal to the ModelBasedPlanningContext In preparation to a larger change that moves much of the context initialization internal to the ModelBasedPlanningContext as well. * Removed unused OMPLPlannerService. * Fixed tests since ModelBasedStateSpace is now virtual * Corrected switched comments * Fixed compile issues, and got construct database to work. Also added launch file for ease of use. * Only install the generate state db script to CATKIN_PACKAGE_BIN_DEST
- Loading branch information
1 parent
683d655
commit cd202ab
Showing
16 changed files
with
285 additions
and
424 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
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
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
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
14 changes: 14 additions & 0 deletions
14
moveit_planners/ompl/ompl_interface/launch/generate_state_database.launch
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<launch> | ||
<arg name="use_current_scene" default="false"/> | ||
<arg name="planning_group"/> | ||
<arg name="constraints_file" doc="the path to a constraints yaml file (see generate_state_database for details)"/> | ||
|
||
<node name="generate_state_database" pkg="moveit_planners_ompl" type="generate_state_database" output="screen"> | ||
<param name="use_current_scene" value="$(arg use_current_scene)"/> | ||
<param name="planning_group" value="$(arg planning_group)"/> | ||
<remap from="~output_folder" to="move_group/constraint_approximations_path"/> | ||
|
||
<rosparam ns="constraints" command="load" file="$(arg constraints_file)"/> | ||
</node> | ||
|
||
</launch> |
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
Oops, something went wrong.