Skip to content
Open
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/graphs/BiconnectedComponents.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* Date: 2017-04-17
* License: CC0
* 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
* Description: Finds all 2VCCs in an undirected graph, and
* runs a callback for the edges in each (and also on bridges). In a 2VCC 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.
* i.e., not part of any cycle, but the callback is still run on it.
* Usage:
* int eid = 0; ed.resize(N);
* for each edge (a,b) {
Expand Down