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

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property MaxIterations As Integer
C#
public int MaxIterations { get; set; }
C++
public:
int MaxIterations {
	int get ();
	void set (int value);
}

Value

An integer greater than zero.

Remarks

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

Exceptions

ExceptionCondition
ArgumentOutOfRangeException The value is less than or equal to zero.