The maximum number of function evaluations allowed.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

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

Field Value

An int containing the maximum number of function evaluations allowed. Once this limit is reached, the roots found are returned.

Default: MaxEvaluations= 100.

Remarks

Methods AllConverged and property NumberOfRootsFound can be used to confirm whether or not the number of roots requested were found within the maximum evaluations specified. MaxEvaluations must be greater than or equal to 0.

See Also