Type alias ShortestPathAlgorithmType

ShortestPathAlgorithmType: "BFS" | "BIDIRECTIONAL_SEARCH" | "A_STAR" | "JPS"

BFS: (Breadth first search) Simple algorithm. It can find the shortest path in O(4ᵈ) (resp O(8ᵈ) for 8 directions). d is the length of the shortest path.

BIDIRECTIONAL_SEARCH: This algorithm starts 2 BFS, one from the start and one from the end position. It has a performance of O(4^(d/2)) (resp O(8^(d/2))).

Generated using TypeDoc