is_biconnected | R Documentation |
Tests whether a graph is biconnected.
is_biconnected(graph)
graph |
The input graph. Edge directions are ignored. |
A graph is biconnected if the removal of any single vertex (and its adjacent edges) does not disconnect it.
igraph does not consider single-vertex graphs biconnected.
Note that some authors do not consider the graph consisting of two connected vertices as biconnected, however, igraph does.
Logical, TRUE
if the graph is biconnected.
articulation_points()
, biconnected_components()
,
is_connected()
, vertex_connectivity()
Connected components
articulation_points()
,
biconnected_components()
,
component_distribution()
,
decompose()
is_biconnected(make_graph("bull"))
is_biconnected(make_graph("dodecahedron"))
is_biconnected(make_full_graph(1))
is_biconnected(make_full_graph(2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.