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