Type Definition traitgraph::algo::traversal::PreOrderBackwardDfs[][src]

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

A normal backward DFS in a directed graph.