Crate pathfinding [] [src]

This crate implements functions to search in a graph.

Functions

astar

Compute a shortest path using the A* search algorithm.

bfs

Compute a shortest path using the breadth-first search algorithm.

dfs

Compute a path using the depth-first search algorithm.

dijkstra

Compute a shortest path using the Dijsktra search algorithm.

fringe

Compute a shortest path using the Fringe search algorithm.