screeps_pathfinding/algorithms/
mod.rs

1/// Provides methods for pathfinding using the A* algorithm.
2///
3/// You most likely want to start with one of the following:
4/// - [shortest_path_roomxy_single_goal](crate::algorithms::astar::shortest_path_roomxy_single_goal)
5/// - [shortest_path_position_single_goal](crate::algorithms::astar::shortest_path_position_single_goal)
6pub mod astar;
7
8/// Provides methods for pathfinding using Dijkstra's Shortest Paths algorithm
9pub mod dijkstra;