Represents the biconnected components of a graph, as computed by BiconnectedComponents.
Inheritance Hierarchy
BiconnectedComponentsResult
Remarks
This class cannot be instantiated
Type Details
- yFiles module
- view-layout-bridge
Properties
Gets a collection of all articulation points in the graph.
Gets a collection of all biconnected components in the graph.
Gets a map which returns for each edge the ID of the component the edge belongs to.
Remarks
The ID of a component is a non-negative number value which is common for all edges of the same component.
For self-loops that cannot be associated unambiguously to a component, or for edges that do not belong to the subgraphEdges, we return -1.
Gets a map which returns for each edge the component the edge belongs to.
Methods
Gets a collection of all biconnected components that contain the given node
.
Parameters
options - Object
A map of options to pass to the method.
A map of options to pass to the method.
- node - INode
- The node for which the biconnected components are retrieved.
Returns
- ↪ResultItemCollection<BiconnectedComponent>
- A collection of all biconnected components that contain the given
node
.