pub fn bidirectional_search_digraph<N, E, Ix>( graph: &DiGraph<N, E, Ix>, start: &N, goal: &N, ) -> Result<Option<Vec<N>>>where N: Node + Debug + Clone + Hash + Eq, E: EdgeWeight, Ix: IndexType,
Bidirectional search for directed graphs