Click or drag to resize

StoppingConditionConstraintEvaluatorCheckCurrentState Method

This method gets called every time a new ITimeBasedState is checked by the parent StoppingConditionEvaluator. This method should be used when the criteria of your StoppingConditionConstraintEvaluator needs to check every computed state. For example, ThresholdStoppingConditionConstraintEvaluator needs to keep track of extrema if its InequalityCriteria is set to GreaterThanMinimum or LessThanMaximum.

Namespace:  AGI.Foundation.StoppingConditions
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public virtual void CheckCurrentState(
	ITimeBasedState currentState
)

Parameters

currentState
Type: AGI.Foundation.CoordinatesITimeBasedState
The state to check at every step of propagation.
See Also