Skip to content

Commit d8367b5

Browse files
author
zks
committed
hybrid a star python 3.5
1 parent e102b5d commit d8367b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PathPlanning/HybridAStar/hybrid_a_star.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Hybrid A* path planning
44
55
author: Atsushi Sakai (@Atsushi_twi)
6+
Zheng Zh (@Zhengzh)
67
78
"""
89

@@ -143,7 +144,7 @@ def calc_motion_inputs():
143144

144145

145146
def get_neighbors(current, config, ox, oy, kdtree):
146-
# import ipdb; ipdb.set_trace()
147+
147148
for steer, d in calc_motion_inputs():
148149
node = calc_next_node(current, steer, d, config, ox, oy, kdtree)
149150
if node and verify_index(node, config):
@@ -163,7 +164,6 @@ def calc_next_node(current, steer, direction, config, ox, oy, kdtree):
163164

164165
# plt.plot(xlist, ylist)
165166
if not check_car_collision(xlist, ylist, yawlist, ox, oy, kdtree):
166-
# import ipdb; ipdb.set_trace()
167167
return None
168168

169169
d = direction==1

0 commit comments

Comments
 (0)