[][src]Type Definition traitgraph::traversal::PreOrderUndirectedBfs

type PreOrderUndirectedBfs<Graph> = PreOrderTraversal<Graph, UndirectedNeighborStrategy, BfsQueueStrategy, LinkedList<<Graph as GraphBase>::NodeIndex>>;

A BFS that treats each directed edge as an undirected edge, i.e. that traverses edge both in forward and backward direction.