-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use 1/0 instead of true/false in ompl_planning.yaml (#460)
If we set these parameters to "true" or "false, you will get the following error when planning: ``` `[moveit.planning_request_adapter]: Exception caught executing adapter 'Fix Start State In Collision': bad lexical cast: source type value could not be interpreted as target [task_planning_action_server-1] Skipping adapter instead.` ``` In ompl_interface, these parameters are set using `boost::lexical_cast<bool>(it->second)`, which expects numbers as strings ("1" or "0") but will fail if passed a string like "true" or "false".
- Loading branch information
1 parent
628bcfa
commit 6a64b97
Showing
1 changed file
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