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