InequalityCondition Enumeration |
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum InequalityCondition
Public Enumeration InequalityCondition
public enum class InequalityCondition
Members
| Member name | Description |
---|
| Equals |
Does whatever value equal the threshold given. When using this with a
ThresholdStoppingConditionConstraint it is best to only use this option with something
that is incremented slowly. A common error is to have the constraints
InequalityCriteria set to Equals, but the
ThresholdStoppingConditionConstraint will only equal its threshold at one
instant, and when the propagator happens to miss that exact spot, the propagation never stops.
|
| NotEquals |
Does whatever value not equal the threshold given.
|
| GreaterThan |
Is the value greater than the threshold given.
|
| GreaterThanOrEqual |
Is the value greater than or equal to the threshold given.
|
| GreaterThanMinimum |
Is the value greater than the lowest value computed up to now.
|
| LessThan |
Is the value less than the threshold given.
|
| LessThanOrEqual |
Is the value less than or equal to the threshold given.
|
| LessThanMaximum |
Is the value less than the largest value computed up to now.
|
See Also