biconnected-components
Compute the biconnected components of a graph.
Example
use UnGraph;
use Bcc;
// construct a simple graph
let g = from_edges;
// Get a vector of the biconnected components defined by their node indices
let bcc = g.bcc;
assert_eq!;
for bcc_nodes in bcc
License: MIT OR Apache-2.0