icentral-graph 0.1.0

A Rust library for advanced graph manipulation, focusing on minimum union cycles, betweenness centrality, and biconnected components.
Documentation
1
2
3
4
5
6
7
8
9
crate::ix!();

impl<GH> GetNumMucs for Graph<GH> {

    fn get_num_mucs(&mut self) -> usize {
        
        self.mucs.iter().filter(|x| x.is_valid()).count()
    }
}