diffsol 0.12.3

A library for solving ordinary differential equations (ODEs) in Rust.
Documentation
1
2
3
4
5
6
7
use crate::{OdeEquationsStoch, OdeSolverMethod};

pub trait SdeSolverMethod<'a, Eqn>: OdeSolverMethod<'a, Eqn>
where
    Eqn: OdeEquationsStoch + 'a,
{
}