cycleDestinationTree property

EnumValue get cycleDestinationTree

This value for Diagram#validCycle states that any number of destination links may go out of a node, but at most one source link may come into a node, and there are no directed cycles.

This value assumes that the graph does not already have any cycles in it, or else the behavior may be indeterminate.

Implementation

static _i3.EnumValue get cycleDestinationTree => _i4.getProperty(
      _declaredDiagram,
      'CycleDestinationTree',
    );
set cycleDestinationTree (EnumValue value)

Implementation

static set cycleDestinationTree(_i3.EnumValue value) {
  _i4.setProperty(
    _declaredDiagram,
    'CycleDestinationTree',
    value,
  );
}