lib/astar: report final queue length
This commit is contained in:
parent
e1fb37d229
commit
e9ada04aa9
@ -27,6 +27,7 @@ def search(start, is_goal, neighbors, heuristic=None):
|
||||
|
||||
if is_goal(this):
|
||||
print("astar: visited", len(done), "nodes")
|
||||
print("astar: pending", len(q), "nodes")
|
||||
# reconsruct the path
|
||||
n = this
|
||||
path = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user