Skip to content

Commit

Permalink
fix(util): toppra.compute_trajectory() does not return aux data. (#224)
Browse files Browse the repository at this point in the history
* minor fix

* update history.md
  • Loading branch information
ompugao committed Feb 20, 2023
1 parent fe10409 commit f8c55e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Added
- [python] seidelWrapper solves 1d LP instead of 2d LP when x_min == x_max and solve_1d > 0
- [python] Fixed planning_utils.py to follow the latest api of toppra.algorithm.ParameterizationAlgorithm

## 0.5.2 (Nov 19 2022)
- [cpp] always define all installed symbols.
Expand Down
2 changes: 1 addition & 1 deletion toppra/planning_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def retime_active_joints_kinematics(
)
_t1 = time.time()

traj_ra, aux_traj = instance.compute_trajectory(0, 0)
traj_ra = instance.compute_trajectory(0, 0)
_t2 = time.time()
logger.debug(
"t_setup={:.5f}ms, t_solve={:.5f}ms, t_total={:.5f}ms".format(
Expand Down

0 comments on commit f8c55e3

Please sign in to comment.