Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/graph/BiconnectedComponents.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* Source: folklore
* Description: Finds all biconnected components in an undirected graph, and
* runs a callback for the edges in each. In a biconnected component there
* are at least two distinct paths between any two nodes. Note that a node can
* be in several components. An edge which is not in a component is a bridge,
* i.e., not part of any cycle.
* are at least two internally disjoint paths between any two nodes (a cycle
* exists through them). Note that a node can be in several components. An
* edge which is not in a component is a bridge, i.e., not part of any cycle.
* Usage:
* int eid = 0; ed.resize(N);
* for each edge (a,b) {
Expand Down