Terminator

Trait Terminator 

Source
pub trait Terminator {
    // Required method
    fn terminated(&mut self) -> bool;
}
Expand description

Connected terminators are checked for termination regularly. If the ‘terminate’ function of the terminator returns true the solver is terminated synchronously as soon it calls this function.

Required Methods§

Source

fn terminated(&mut self) -> bool

Implementors§