Skip to content

Commit

Permalink
handling np
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Henkel <[email protected]>
  • Loading branch information
ct2034 committed Nov 4, 2024
1 parent 38efc85 commit f9fbd72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planner/mapf_implementations/plan_cbs_ta.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def to_inputfile(gridmap, starts, goals, fname):
- [3, 0]
"""
starts = np.array(starts)
# goals = np.array(goals)
goals = np.array(goals)
obstacles = []
for x, y in list(zip(*(np.where(gridmap > FREE)))):
obstacles.append([x.item(), y.item()])
Expand Down

0 comments on commit f9fbd72

Please sign in to comment.