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: Numerics.NET.Algorithms
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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

ArgumentOutOfRangeException

value is less than or equal to zero.

See Also