module Cvodes:sig
..end
Sensitivity analysis (forward and adjoint) and quadrature equations for CVODE.
These submodules extend basic state functions, $\dot{y} = f(t, y)$, with parameters $p$ and quadrature variables $y_Q$. The former exposes a new dependency, $\dot{y} = f(t, y, p)$, relative to which the sensitivity of a solution can be approximated. The latter effectively suppresses a dependency ($y_Q$ is disjoint from $y$), $\dot{y}_Q = f_Q(t, y, p)$, to reduce computation costs.
type('data, 'kind)
session =('data, 'kind) Cvode.session
Alias for Cvode sessions. The Cvodes submodules all work by ‘extending’
an existing session created with Cvode.init
.
module Quadrature:sig
..end
Integration of pure quadrature equations.
module Sensitivity:sig
..end
(Forward) Sensitivity analysis of ODEs with respect to their parameters.
module Adjoint:sig
..end
(Adjoint) Sensitivity analysis of ODEs with respect to their parameters.