ConvergenceTest<T>.RunBeforeIteration Property

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

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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