OneDimensionalOptimizer.SolutionTest Property

Gets the convergence test that uses the solution of the optimization.

Definition

Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public SimpleConvergenceTest<double> SolutionTest { get; }

Property Value

SimpleConvergenceTest<Double>
A SimpleConvergenceTest<T> object.

Remarks

The solution test for a one-dimensional optimizer is a SimpleConvergenceTest<T> that compares the last change in the solution to the tolerance. The relative error is computed using the absolute value of the approximate solution.

See Also