ConvergenceTest<T>.RunBeforeIteration Property

Gets or sets whether the convergence test should be run before the first actual iteration.

Definition

Namespace: Numerics.NET.Algorithms
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public bool RunBeforeIteration { get; set; }

Property Value

Boolean

Remarks

Some convergence tests are valid only after the algorithm has performed an iteration. This is true for any test that compares a current value to a previous value. Such tests should have their RunBeforeIteration property set to false.

See Also