Type Definition traitgraph_algo::traversal::PreOrderUndirectedBfs
source · [−]pub type PreOrderUndirectedBfs<'a, Graph> = PreOrderTraversal<'a, Graph, UndirectedNeighborStrategy, BfsQueueStrategy, VecDeque<<Graph as GraphBase>::NodeIndex>>;
Expand description
A BFS that treats each directed edge as an undirected edge, i.e. that traverses edge both in forward and backward direction.