pub trait Optimizer {
type Point;
// Required method
fn best_point(&self) -> Self::Point;
}
Expand description
Running optimizer methods independent of configuration and state.
Required Associated Types§
Required Methods§
Sourcefn best_point(&self) -> Self::Point
fn best_point(&self) -> Self::Point
Return the best point discovered.