pub fn bidijkstra_arranged<'scope, N, Tr>(
forward: Arranged<'scope, Tr>,
reverse: Arranged<'scope, Tr>,
goals: VecCollection<'scope, Tr::Time, (N, N)>,
) -> VecCollection<'scope, Tr::Time, ((N, N), u32)>where
N: ExchangeData + Hash,
Tr: for<'a> TraceReader<Key<'a> = &'a N, Val<'a> = &'a N, Diff = isize> + Clone + 'static,Expand description
Bi-directional Dijkstra search using arranged forward and reverse edge collections.