Skip to main content

shortest_path_unweighted

Function shortest_path_unweighted 

Source
pub fn shortest_path_unweighted(
    adjacency: &[Vec<usize>],
    start: usize,
    target: usize,
) -> Result<Option<Path>, PathError>