Skip to main content

SimMe

Trait SimMe 

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

Required Methods§

Source

fn main_loop<S>(&mut self, solver: S) -> 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".

Implementors§