Skip to content

Commit e11b5a9

Browse files
authored
Correct naming and order of planning response adapters
The AddRuckigTrajectorySmoothing was mentioned as a request adapter, even though it is a response adapter. The order of response_adapters in the ompl_planning.yaml needs to be AddTimeOptimalParameterization first, then AddRuckigTrajectorySmoothing, which will correctly execute them in the order of (1) AddTimeOptimalParameterization, (2) AddRuckigTrajectorySmoothing
1 parent b0ba2a9 commit e11b5a9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

doc/examples/time_parameterization/time_parameterization_tutorial.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ A time parameterization algorithm such as TOTG calculates velocities and acceler
3030

3131
To apply the Ruckig smoothing algorithm, jerk limits should be defined in a ``joint_limits.yaml`` file. If you do not specify a jerk limit for any joint, a reasonable default will be applied and a warning printed.
3232

33-
Finally, add the Ruckig smoothing algorithm to the list of planning request adapters (typically in ``ompl_planning.yaml``). The Ruckig smoothing algorithm should run last, so put it at the top of list:
33+
Finally, add the Ruckig smoothing algorithm to the list of planning response adapters (typically in ``ompl_planning.yaml``). The Ruckig smoothing algorithm should run after AddTimeOptimalParameterization, so put it below AddTimeOptimalParameterization in the list:
3434

3535
.. code-block:: yaml
3636
3737
response_adapters:
38-
- default_planning_request_adapters/AddRuckigTrajectorySmoothing
39-
- default_planning_request_adapters/AddTimeOptimalParameterization
38+
- default_planning_response_adapters/AddTimeOptimalParameterization
39+
- default_planning_response_adapters/AddRuckigTrajectorySmoothing
4040
...

0 commit comments

Comments
 (0)