Trait OptimizerExt

Source
pub trait OptimizerExt: StreamingIteratorExt {
    // Provided method
    fn argmin(&mut self) -> Option<<Self::Item as Optimizer>::Point>
       where Self::Item: Optimizer { ... }
}
Expand description

An extension trait adding methods to StreamingIterator for optimization.

Provided Methods§

Source

fn argmin(&mut self) -> Option<<Self::Item as Optimizer>::Point>
where Self::Item: Optimizer,

Return point that attempts to minimize a problem by running to completion.

How well the point minimizes the problem depends on the optimizer.

Implementors§