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
13
14
15
16
17
crate::ix!();

impl<GH> ResetVisitMarkersAndVisitNode for Graph<GH> {

    fn reset_visit_markers_and_visit_node(
        &mut self, 
        node: NodeId)
    {
        debug!("in {}, resetting visit markers to *false*", self.name());

        self.visit_markers.fill(false);

        debug!("in {}, visiting single node {}", self.name(), node);

        self.visit_markers.visit(node);
    }
}