Trait ParameterAdapter

Source
pub trait ParameterAdapter<State, Parameters> {
    type Vector;

    // Required method
    fn compute_initial_state_and_parameters(
        &self,
        vector: Self::Vector,
    ) -> (State, Parameters);
}

Required Associated Types§

Required Methods§

Implementors§

Source§

impl<State, Parameters> ParameterAdapter<State, Parameters> for ParameterAdapter1DEven<State, Parameters>

Source§

impl<State, Parameters> ParameterAdapter<State, Parameters> for ParameterAdapter2DEven<State, Parameters>