Stepper (deSolve wrappers)

Usage

make_stepper_deSolve(category, algorithm, ...)
make_stepper_deSolve_basic(algorithm)
make_stepper_deSolve_controlled(algorithm, abs_tol = 1e-06, rel_tol = 1e-06)

Arguments

category
Either "basic" or "controlled"
algorithm
The stepper algorithm (e.g. "runge_kutta4")
...
Additional parameters (still under development)
abs_tol
Absolute tolerance (see atol in deSolve docs for now)
rel_tol
Relative tolerance (see rtol in deSolve docs for now)

Stepper (deSolve wrappers)

Description

Wrapper around deSolve to allow them to use the integration functions in this package, even though deSolve will do all the integration. This section is experimental, and prone to change. Please avoid at the moment.