pub type BellmanFordPathEntry = Option<(Vec<VertexId>, Vec<u32>)>;Expand description
One entry in the result of bellman_ford_paths: Some((vertices, edges)) if the target is reachable, None otherwise.
Aliased Type§
pub enum BellmanFordPathEntry {
None,
Some((Vec<u32>, Vec<u32>)),
}