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.2.419.0 (24.2.419.0)
Syntax public delegate double ConditionCheckCallback(
ITimeBasedState currentState
)
Public Delegate Function ConditionCheckCallback (
currentState As ITimeBasedState
) As Double
public delegate double ConditionCheckCallback(
ITimeBasedState^ currentState
)
type ConditionCheckCallback =
delegate of
currentState : ITimeBasedState -> float
Parameters
- currentState
- Type: AGI.Foundation.CoordinatesITimeBasedState
The state to check.
Return Value
Type:
DoubleThe value extracted from the
currentState to be used by the condition.
See Also