Click or drag to resize

ActiveSetSequentialQuadraticProgrammingOptimizer.ConvergenceChecker Delegate

A function that tests the convergence of the optimizer by comparing the results of the current iteration with the results of the previous iteration.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public delegate bool ConvergenceChecker(
	ActiveSetSequentialQuadraticProgrammingOptimizer optimizer,
	OptimizerMultivariableFunctionResults currentResults,
	OptimizerMultivariableFunctionResults previousResults
)

Parameters

optimizer
Type: AGI.Foundation.NumericalMethods.ActiveSetSequentialQuadraticProgrammingOptimizer
The optimizer whose convergence must be checked.
currentResults
Type: AGI.Foundation.NumericalMethods.OptimizerMultivariableFunctionResults
The results of the Function for the current iteration.
previousResults
Type: AGI.Foundation.NumericalMethods.OptimizerMultivariableFunctionResults
The results of the Function for the previous iteration

Return Value

Type: Boolean
See Also