You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The OMPL Planners (PRM and RRT*) do not avoid obstacles when study_static_obstacles is run (in both 2D and 3D). This seems to be because the clearance function within the ValidityChecker class is always returning 1e4.
This seems to be because in lines 93 and 108, the code is re-declaring min_dist inside of their respective branch. double min_dist = 1e4;.
Any modifications to min_dist after this are temporary, and once the branch is exited, the original min_dist value is returned.
Getting rid of lines 93 and 108 allow the OMPL planners to work in the static environments.
The text was updated successfully, but these errors were encountered:
The OMPL Planners (PRM and RRT*) do not avoid obstacles when study_static_obstacles is run (in both 2D and 3D). This seems to be because the
clearance
function within theValidityChecker
class is always returning1e4
.This seems to be because in lines 93 and 108, the code is re-declaring
min_dist
inside of their respective branch.double min_dist = 1e4;
.Any modifications to min_dist after this are temporary, and once the branch is exited, the original min_dist value is returned.
Getting rid of lines 93 and 108 allow the OMPL planners to work in the static environments.
The text was updated successfully, but these errors were encountered: