  | VariableOrderOdeSolverOptionsAbsoluteTolerance Property | 
            Gets and sets the bound on the estimated error at each integration step.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleVector AbsoluteTolerance { get; set; }Public Property AbsoluteTolerance As DoubleVector
	Get
	Set
public:
property DoubleVector^ AbsoluteTolerance {
	DoubleVector^ get ();
	void set (DoubleVector^ value);
}member AbsoluteTolerance : DoubleVector with get, set
Property Value
DoubleVector
RemarksAt the ith integration step the error, e[i] for the estimated solution
            y[i] satisfies
            e[i] <= max(RelativeTolerance*Math.Abs(y[i]), AbsoluteTolerance[i])
            
See Also