Click or drag to resize

ActiveSetSequentialQuadraticProgrammingOptimizerConvergenceChecker 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: 24.1.418.0 (24.1.418.0)
Syntax
public delegate bool ConvergenceChecker(
	ActiveSetSequentialQuadraticProgrammingOptimizer optimizer,
	OptimizerMultivariableFunctionResults currentResults,
	OptimizerMultivariableFunctionResults previousResults
)

Parameters

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

Return Value

Type: Boolean
See Also