ManagedIterativeAlgorithm<T, TError, TReport>.MaxIterations Property

Gets or sets the maximum number of iterations to use when approximating the roots of the target function.

Definition

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

Property Value

Int32
An integer greater than zero.

Remarks

If the ConvergenceCriterion property is set to NumberOfIterations, this is also the number of iterations that will be performed.

Exceptions

ArgumentOutOfRangeException The value is less than or equal to zero.

See Also