ConvergenceTest<T>.RequiredSuccessivePasses Property

Gets or sets a value that indicates the number of times the test criteria must be fulfilled before the test is considered successful.

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public int RequiredSuccessivePasses { get; set; }

Property Value

Int32

Remarks

Some algorithms may show only marginal changes from one iteration to the next. If a convergence test is successful, the algorithm may end prematurely. To avoid this situation, set this property to a value larger than 1.

Exceptions

ArgumentOutOfRangeExceptionvalue is less than or equal to zero.

See Also