Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/soraxas/sbp-env
Browse files Browse the repository at this point in the history
  • Loading branch information
soraxas committed Jan 2, 2024
2 parents ba6a88d + 64f360f commit cd23044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbp_env/planners/birrtPlanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def run_once(self):
other_poses = self.poses
other_nodes = self.nodes
distances = np.linalg.norm(
other_poses[: len(self.nodes)] - newpos, axis=1
other_poses[: len(other_nodes)] - newpos, axis=1
)
if min(distances) < self.args.epsilon:
idx = np.argmin(distances)
Expand Down

0 comments on commit cd23044

Please sign in to comment.