pub trait Optimizer {
    fn step(&mut self, net: Rc<RefCell<Net>>);
}

Required methods

Implementors