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

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

A normal backward BFS in a directed graph.