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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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 -> floatParameters
- 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