Trait optimization::Evaluation [] [src]

pub trait Evaluation {
    fn position(&self) -> &[f64];
    fn value(&self) -> f64;
}

Captures the essence of a function evaluation.

Required Methods

Position x with the lowest corresponding value f(x).

The actual value f(x).

Implementors