Skip to main content

betweenness_centrality

Function betweenness_centrality 

Source
pub fn betweenness_centrality<G>(
    graph: &G,
    direction: Direction,
    normalized: bool,
) -> Vec<(G::Node, f64)>
where G: IndexGraphView,