Gets or sets the absolute tolerance used in the convergence test.

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

Syntax

Visual Basic (Declaration)
Public Property AbsoluteTolerance As Double
C#
public double AbsoluteTolerance { get; set; }
C++
public:
double AbsoluteTolerance {
	double get ();
	void set (double value);
}

Value

A real number greater than or equal to zero.

Remarks

The absolute error is the absolute value of the difference between the computed and the actual result. The absolute tolerance specifies the largest value of the ratio that is allowed.

This property is ignored when ConvergenceCriterion is equal to ConvergenceCriterion.

See Also