documentationfor yFiles for HTML 2.6

TransitivityAlgorithm

This class provides algorithms to compute reachability information for directed, acyclic graphs.

Inheritance Hierarchy
TransitivityAlgorithm

Remarks

Note: Methods of this class work with instances of Graph. To calculate the transitive closure or reduction of an IGraph use TransitiveClosure or TransitiveReduction instead.

Definitions

  • Reflexive, transitive closure: Let G = (V,E) be a directed acyclic graph. The reflexive, transitive closure of G is a graph which contains edge (v,w) only if there exists a path from v to w in G.
  • Transitive reduction: Let G = (V,E) be a directed acyclic graph. The transitive reduction of G is a graph which contains edge (v,w) only if there exists no path from v to w in G of length 2 or more.

Type Details

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

Static Methods