Skip to main content

shortest_path

Function shortest_path 

Source
pub fn shortest_path<G>(
    graph: &G,
    source: G::Node,
    target: G::Node,
) -> Option<Vec<G::Node>>
where G: IndexGraphView,