pub type PreOrderForwardDfs<'a, Graph> = PreOrderTraversal<'a, Graph, ForwardNeighborStrategy, DfsQueueStrategy, VecDeque<<Graph as GraphBase>::NodeIndex>>;
Expand description

A normal forward DFS in a directed graph.