  | ArnoldiEigenvalueOptionsTolerance Property | 
            Gets and sets the tolerance used in the iteration stopping criterion.
            Iteration stops when the relative accuracy of the Ritz value 
            satifies BOUNDS(I) less than or equal to 
            Bounds(i) <= Tolerance * |Ritz(i)| TOL*ABS(RITZ(I)).
            The default value is computed machine precision.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic double Tolerance { get; set; }Public Property Tolerance As Double
	Get
	Set
public:
property double Tolerance {
	double get ();
	void set (double value);
}member Tolerance : float with get, set
Property Value
Double
Remarks
            A negative value for Tolerance indicates computed machine
            precision will be used.
            
See Also