Trait GetShortestPath

Source
pub trait GetShortestPath {
    // Required method
    fn get_shortest_path(
        &mut self,
        src: NodeId,
        dst: NodeId,
    ) -> Result<Vec<NodeId>, BetweennessCentralityError>;
}

Required Methods§

Implementors§