ThresholdStoppingConditionConstraintEvaluator.IsConstraintSatisfied Method |
This method will examine from the state and return
true if this
constraint is satisfied, and
false
if not.
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic override bool IsConstraintSatisfied(
ITimeBasedState state
)
Public Overrides Function IsConstraintSatisfied (
state As ITimeBasedState
) As Boolean
public:
virtual bool IsConstraintSatisfied(
ITimeBasedState^ state
) override
abstract IsConstraintSatisfied :
state : ITimeBasedState -> bool
override IsConstraintSatisfied :
state : ITimeBasedState -> bool
Parameters
- state
- Type: AGI.Foundation.Coordinates.ITimeBasedState
The state to check.
Return Value
Type:
Booleantrue if this constraint is satisfied; otherwise
false.
When all
constraints return
true, then the
stopping condition may stop propagation if it too is satisfied.
See Also