1 2 3 4 5 6 7
use crate::{OdeEquationsStoch, OdeSolverMethod}; pub trait SdeSolverMethod<'a, Eqn>: OdeSolverMethod<'a, Eqn> where Eqn: OdeEquationsStoch + 'a, { }