ThresholdStoppingConditionConstraintEvaluatorIsConstraintSatisfied 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: 25.1.421.0 (25.1.421.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.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