SimMe

Trait SimMe 

Source
pub trait SimMe<Inst> {
    // Required method
    fn main_loop<S>(
        &mut self,
        solver_params: S::Params,
    ) -> Result<SimStats, Error>
       where S: Solver<Inst>;
}

Required Methods§

Source

fn main_loop<S>(&mut self, solver_params: S::Params) -> Result<SimStats, Error>
where S: Solver<Inst>,

Main loop of the model-exchange simulation

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§