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

type PreOrderUndirectedDfs<Graph> = PreOrderTraversal<Graph, UndirectedNeighborStrategy, DfsQueueStrategy, LinkedList<<Graph as GraphBase>::NodeIndex>>;

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