Click or drag to resize
Accord.NET (logo)

BroydenFletcherGoldfarbShannoDelta Property

Delta for convergence test.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public double Delta { get; set; }
Request Example View Source

Property Value

Type: Double
Remarks

This parameter determines the minimum rate of decrease of the objective function. The library stops iterations when the following condition is met:

(f' - f) / f <  delta

where f' is the objective value of past iterations ago, and f is the objective value of the current iteration. Default value is 0.

See Also