Gets or sets whether the convergence test should be run
before the first actual iteration.
Namespace:
Extreme.Mathematics.Algorithms
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public bool RunBeforeIteration { get; set; }
Public Property RunBeforeIteration As Boolean
Get
Set
public:
property bool RunBeforeIteration {
bool get ();
void set (bool value);
}
member RunBeforeIteration : bool with get, set
Property Value
Type:
Boolean
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.
Reference