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
odesolver using traits and known size at compile time
odesolver using vectors, no need to know the size at compile time, but not as fast due to this.
odesolver using vectors but with trait bounds.
Structs
Struct ODEParam
Enums
Enum ODESolver