StoppingConditionValueStatus Enumeration |
Indicates the value of the stopping condition relative to its threshold.
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 StoppingConditionValueStatus
Public Enumeration StoppingConditionValueStatus
public enum class StoppingConditionValueStatus
type StoppingConditionValueStatus
Members
| Member name | Description |
---|
| AboveThreshold |
The value computed by the StoppingCondition
is above its threshold.
|
| AtThreshold |
The value computed by the StoppingCondition
is at its threshold plus or minus its tolerance.
|
| BelowThreshold |
The value computed by the StoppingCondition
is below its threshold.
|
| NotComputed |
The StoppingCondition has not been evaluated
yet and no determination of its status can be made or the
condition is stopping on an extrema instead of a threshold.
|
See Also