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

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

A normal forward BFS in a directed graph.