Crate odesolver

Source
Expand description

#ODESolver

odesolver is a library for solving ODEs having two main ways of using it. One is by the module solver_trait which is faster but the functions need to know the number of variables at compile time. The other module is solver_vector it is not as fast as the other but the number of variables can be specified at run time.

Modules§

solver_trait
odesolver using traits and known size at compile time
solver_vector
odesolver using vectors, no need to know the size at compile time, but not as fast due to this.
solver_vector_trait
odesolver using vectors but with trait bounds.

Structs§

ODEParam
Struct ODEParam

Enums§

ODESolver
Enum ODESolver