find-path ( start target astar -- path/f )
Path finding using the A* algorithm

Prev:<bfs> ( neighbors -- astar )


Vocabulary
path-finding

Inputs
starta node
targeta node
astaran astar


Outputs
path/fan optimal path from start to target, or f if no such path exists


Word description
Find a path between start and target using the A* algorithm.

Definition