-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move adapter params into separate namespace
- Loading branch information
Showing
2 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
31 changes: 16 additions & 15 deletions
31
.../planning/planning_response_adapter_plugins/res/default_plan_response_adapter_params.yaml
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,17 +1,18 @@ | ||
# This files contains the parameters for all of MoveIt's default PlanResponseAdapters | ||
default_plan_response_adapter_parameters: | ||
path_tolerance: { | ||
type: double, | ||
description: "AddTimeOptimalParameterization: Tolerance per joint in which the time parameterization is allowed to deviate from the original path.", | ||
default_value: 0.1, | ||
} | ||
resample_dt: { | ||
type: double, | ||
description: "AddTimeOptimalParameterization: Time steps between two adjacent waypoints of the parameterized trajectory. The trajectory is re-sampled from the original path.", | ||
default_value: 0.1, | ||
} | ||
min_angle_change: { | ||
type: double, | ||
description: "AddTimeOptimalParameterization: Minimum joint value change to consider two waypoints unique.", | ||
default_value: 0.001, | ||
} | ||
totg: | ||
path_tolerance: { | ||
type: double, | ||
description: "AddTimeOptimalParameterization: Tolerance per joint in which the time parameterization is allowed to deviate from the original path.", | ||
default_value: 0.1, | ||
} | ||
resample_dt: { | ||
type: double, | ||
description: "AddTimeOptimalParameterization: Time steps between two adjacent waypoints of the parameterized trajectory. The trajectory is re-sampled from the original path.", | ||
default_value: 0.1, | ||
} | ||
min_angle_change: { | ||
type: double, | ||
description: "AddTimeOptimalParameterization: Minimum joint value change to consider two waypoints unique.", | ||
default_value: 0.001, | ||
} |
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