ConstraintSatisfiedCallback Delegate |
Namespace:
AGI.Foundation.StoppingConditions
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic delegate bool ConstraintSatisfiedCallback(
ITimeBasedState currentState
)
Public Delegate Function ConstraintSatisfiedCallback (
currentState As ITimeBasedState
) As Boolean
public delegate bool ConstraintSatisfiedCallback(
ITimeBasedState^ currentState
)
type ConstraintSatisfiedCallback =
delegate of
currentState : ITimeBasedState -> bool
Parameters
- currentState
- Type: AGI.Foundation.Coordinates.ITimeBasedState
The state to check.
Return Value
Type:
Booleantrue if the constraint is satisfied; otherwise
false.
See Also