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
10
11
12
crate::ix!();

impl<GH> PrintHeader for Graph<GH> {

    #[inline] fn print_header(&self) {

        debug!("==========================================================");
        debug!("Graph:         {}", self.graph_name);
        debug!("Graph # nodes: {}", self.num_nodes());
        debug!("Graph # edges: {}", self.edges.len());
    }
}