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
# Based on Kinova's parameters: https://github.com/Kinovarobotics/kinova-ros/blob/noetic-devel/kinova_moveit/robot_configs/j2n6s300_moveit_config/config/ompl_planning.yaml
10
10
planner_configs:
11
+
# NOTE: In practice, MoveIt2 hybridizes and shortcuts by default:
max_hybrid_paths: 8# Number of hybrid paths generated per iteration
16
18
num_planners: 4# The number of default planners to use for planning
17
-
planners: "RRTConnect[intermediate_states=0 range=0.05]"# A comma-separated list of planner types (e.g., "PRM,EST,RRTConnect"Optionally, planner parameters can be passed to change the default:"PRM[max_nearest_neighbors=5],EST[goal_bias=.5],RRT[range=10. goal_bias=.1]"
19
+
planners: "RRTConnect[range=0.01]"# A comma-separated list of planner types (e.g., "PRM,EST,RRTConnect"Optionally, planner parameters can be passed to change the default:"PRM[max_nearest_neighbors=5],EST[goal_bias=.5],RRT[range=10. goal_bias=.1]"
18
20
SBLkConfigDefault:
19
21
type: geometric::SBL
20
22
range: 0.0# Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()
@@ -47,7 +49,7 @@ planner_configs:
47
49
RRTConnectkConfigDefault:
48
50
type: geometric::RRTConnect
49
51
intermediate_states: 0# Whether to add intermediate states to the plan, default 0
50
-
range: 0.05# Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()
52
+
range: 0.01# Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup()
51
53
RRTstarkConfigDefault:
52
54
type: geometric::RRTstar
53
55
range: 3.0# Max motion added to tree. ==> maxDistance_ default: 0.0, if 0.0, set on setup() (in practice, for ADA, this default is ~7)
0 commit comments