pub fn bidijkstra_arranged<G, N, Tr>(
forward: &Arranged<G, Tr>,
reverse: &Arranged<G, Tr>,
goals: &Collection<G, (N, N)>,
) -> Collection<G, ((N, N), u32)>
Expand description
Bi-directional Dijkstra search using arranged forward and reverse edge collections.