fn _dfs<G>(
g: &G,
target_node: usize,
articulation_point_tracker: &mut ArticulationPointTracker,
)where
G: IntoEdges + NodeIndexable,Expand description
Helper that performs the required DFS in an iterative manner.
fn _dfs<G>(
g: &G,
target_node: usize,
articulation_point_tracker: &mut ArticulationPointTracker,
)where
G: IntoEdges + NodeIndexable,Helper that performs the required DFS in an iterative manner.