Click or drag to resize

ConditionCheckCallback Delegate

The delegate type that is used by the DelegateStoppingCondition to compute the value used in determining if propagation should stop.

Namespace:  AGI.Foundation.StoppingConditions
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public delegate double ConditionCheckCallback(
	ITimeBasedState currentState
)

Parameters

currentState
Type: AGI.Foundation.CoordinatesITimeBasedState
The state to check.

Return Value

Type: Double
The value extracted from the currentState to be used by the condition.
See Also