[][src]Trait mop_solvers::Solver

pub trait Solver {
    type Rslt;
    fn after_iter(&mut self);
fn before_iter(&mut self);
fn into_result(self) -> Self::Rslt;
fn result(&self) -> &Self::Rslt;
fn result_mut(&mut self) -> &mut Self::Rslt; fn finished(&mut self) { ... }
fn init(&mut self) { ... } }

Associated Types

type Rslt

Loading content...

Required methods

fn after_iter(&mut self)

Do solving work after stoping criteria verification.

fn before_iter(&mut self)

Do solving work before stoping criteria verification.

fn into_result(self) -> Self::Rslt

fn result(&self) -> &Self::Rslt

fn result_mut(&mut self) -> &mut Self::Rslt

Loading content...

Provided methods

fn finished(&mut self)

fn init(&mut self)

Loading content...

Implementors

Loading content...