Parameters
module M : Owl_types_ndarray_algodiff.Sig with type elt = float
Signature
val print_dim : M.arr -> unit
val steps : float -> float -> float -> int
type state_type =
| Row of int |
| Col of int |
| Arr of int array |
val integrate : step:(M.arr -> M.elt -> M.arr * M.elt) -> tspan:(M.elt * float) ->
dt:float -> M.arr -> M.arr * M.arr
val symplectic_integrate : step:((M.arr * M.arr) -> M.elt -> (M.arr * M.arr) * M.elt) ->
tspan:(M.elt * float) -> dt:float -> (M.arr * M.arr) -> M.arr * M.arr * M.arr
val adaptive_integrate : step:(dt:float ->
M.arr -> float -> M.arr * M.elt * float * bool) -> tspan:(M.elt * float) -> dtmax:float ->
M.arr -> M.arr * M.arr