documentationfor yFiles for HTML 2.6

GraphConnectivity

This class provides algorithms for determining certain connectivity components within a graph.

Inheritance Hierarchy
GraphConnectivity

Remarks

Note: Methods of this class work with instances of Graph. To determine connectivity of IGraph instances use one of the following classes instead:

It also provides convenience methods for working with these components.

Definitions

  • Connected graph: A graph is called connected if there exists an undirected path of edges between every pair of nodes.
  • Strongly connected graph: A graph is called strongly connected if there exists a directed path between each pair of nodes.
  • Biconnected graph: A graph is called biconnected if it has no cut vertex or articulation point (i.e., a node whose removal disconnects the remaining graph).
  • KCore: The k-cores of a graph are the maximal connected subgraphs in which all nodes have degree greater or equal to k.

Type Details

yfiles module
algorithms
yfiles-umd modules
All layout modules, view-layout-bridge
Legacy UMD name
yfiles.algorithms.GraphConnectivity

Static Methods