Create solver settings.
Solver( atol = 1e-08, rtol = 1e-08, hmax = NA, maxsteps = 70000L, method = "liblsoda" )
atol
: absolute solver tolerance, default is 1e-08rtol
: relative solver tolerance, default is 1e-08hmax
: limit how big a solver step can be, default is NAmaxsteps
: max steps between 2 integration times (e.g. when observations records are far apart), default is 70000method
: solver method, for RxODE/rxode2 only: 'liblsoda' (default), 'lsoda', 'dop853', 'indLin'. Mrgsolve's method is always 'lsoda'.solver settings
Useful links