Expand description
Algorithms related to graph connectivity.
Modules§
- scc
- Strongly connected components algorithms.
Functions
condensation
,kosaraju_scc
andtarjan_scc
are taken from the ‘petgraph’ crate.
Functions§
- articulation_
points - Find all articulation points in a simple undirected graph.
- connected_
components - [Generic] Return the number of connected components of the graph.
- find_
bridges - Find all bridges in a simple undirected graph.
- has_
path_ connecting - [Generic] Check if there exists a path starting at
from
and reachingto
.