A* search algorithm: Difference between revisions

Content added Content deleted
(Undo revision 316212 by Abcxyz12345 (talk))
Line 2,639: Line 2,639:
while len(openVertices) > 0:
while len(openVertices) > 0:
Get the vertex in the open list with the lowest F score
#Get the vertex in the open list with the lowest F score
current = None
current = None
currentFscore = None
currentFscore = None