Click or drag to resize

TargetedSegmentListOperatorBehavior Enumeration

Defines the behavior of the operators in the TargetedSegmentList. These options are mainly for operators that compute iteratively, such as the TargetedSegmentListDifferentialCorrector.

Namespace:  AGI.Foundation.SegmentPropagation
Assembly:  AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public enum TargetedSegmentListOperatorBehavior
Members
  Member nameDescription
RunActiveOperators This will run all of the operators normally. When each operator finishes, the next will run, and the overall propagation will continue after the final operator finishes.
RunActiveOperatorsOnce This will run each operators once, only allowing them to run a single iteration. If the operator does not work in an iterative fashion, then it will run normally.
RunNominalSequence This will run all of the operators once with whatever values it is set with. If the operator iterates to a solution, no iteration will occur. For operators that are not iterative, they will run normally.
See Also