#region Copyright © 2009, De Santiago-Castillo JA. All rights reserved. //Copyright © 2009 Jose Antonio De Santiago-Castillo //E-mail:JAntonioDeSantiago@gmail.com //Web: www.DotNumerics.com // #endregion using System; using System.Collections.Generic; using System.Text; namespace DotNumerics.ODE { /// /// Specifies the type of the relative error and absolute error tolerances. /// public enum ErrorToleranceEnum { /// /// The relative error and absolute error tolerances are scalars. The program keeps the error of Y(I) below RelTol*Abs(Y[i]) + AbsTol. /// Scalar, /// /// The relative error and absolute error tolerances are arrays. In this case the program keeps the error of Y(I) below RelTolArray[I]*Abs(Y(I))+AbsTolArray[i]. /// Array } }