[][src]Trait mathru::analysis::differential_equation::ordinary::ExplicitODE

pub trait ExplicitODE<T> {
    pub fn func(&self, t: &T, x: &Vector<T>) -> Vector<T>;
pub fn time_span(&self) -> (T, T);
pub fn init_cond(&self) -> Vector<T>; }

Explicit ODE algrithm interface

This trait has to be implemented by every ODE which shall be solved with and explicit ODE solving algorithm.

Required methods

pub fn func(&self, t: &T, x: &Vector<T>) -> Vector<T>[src]

pub fn time_span(&self) -> (T, T)[src]

pub fn init_cond(&self) -> Vector<T>[src]

Loading content...

Implementors

impl<T> ExplicitODE<T> for Euler<T> where
    T: Real
[src]

Loading content...