find-path* ( start quot astar -- path/f )


Vocabulary
path-finding

Inputs
starta node
quota quotation with stack effect ( node -- ? )
astaran astar


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


Word description
Find a path starting from start using the A* algorithm. The end of the path has been found when quot returns a true value.

Definition