This documentation is being rewritten. If something looks off, please cross-check with the Boost 1.91.0 Boost.Graph docs and open an issue.

Connectivity

Test and measure how well connected a graph is.

Algorithm What it does

Edge Connectivity

Minimum number of edges whose removal disconnects the graph.

ST Connected

Test whether two specific vertices are connected by a path. Uses bidirectional BFS for early termination.

For connected components (grouping all vertices by reachability), see Connected Components. Edge connectivity measures the "strength" of the connection between the most weakly connected pair.