Trait EquationTypes

pub trait EquationTypes {
    type S: State + Debug;
    type P: Predictions;
}
Expand description

Trait defining the associated types for equations.

Required Associated Types§

type S: State + Debug

The state vector type

type P: Predictions

The predictions container type

Implementors§

§

impl EquationTypes for Analytical

§

type S = NalgebraVec<f64>

§

type P = SubjectPredictions

§

impl EquationTypes for ODE

§

type S = NalgebraVec<f64>

§

type P = SubjectPredictions

§

impl EquationTypes for SDE