peroxide::numerical::ode

Trait ODESolver

Source
pub trait ODESolver {
    // Required method
    fn solve<P: ODEProblem>(
        &self,
        problem: &P,
        t_span: (f64, f64),
        dt: f64,
        initial_conditions: &[f64],
    ) -> Result<(Vec<f64>, Vec<Vec<f64>>)>;
}
Expand description

Trait for ODE solvers.

Implement this trait to define your own ODE solver.

Required Methods§

Source

fn solve<P: ODEProblem>( &self, problem: &P, t_span: (f64, f64), dt: f64, initial_conditions: &[f64], ) -> Result<(Vec<f64>, Vec<Vec<f64>>)>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§