Trait sir_ddft::ode::ExplicitODESolver[][src]

pub trait ExplicitODESolver: Sized {
    type Problem: ODEIVP<Self>;
    fn integrate(&self, p: &mut Self::Problem);
}

Trait representing a minimal interface for an explicit solver for ODEs.

Associated Types

type Problem: ODEIVP<Self>[src]

IVP to solve

Loading content...

Required methods

fn integrate(&self, p: &mut Self::Problem)[src]

Integrate a given IVP with this integrator

Loading content...

Implementors

impl<P: ODEIVP<Self>> ExplicitODESolver for RKF45Solver<P>[src]

type Problem = P

Loading content...