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§