Click or drag to resize

InitializeCallback Delegate

The delegate type that lets the StoppingConditionEvaluator or StoppingConditionConstraintEvaluator be initialized. This will be run in the Initialize(ITimeBasedState) method.

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 void InitializeCallback(
	ITimeBasedState initialState
)

Parameters

initialState
Type: AGI.Foundation.CoordinatesITimeBasedState
The initial state of the function getting run.
Remarks
This is specifically for the DelegateStoppingCondition and DelegateStoppingConditionConstraint types.
See Also