pub trait Evaluation { // Required methods fn position(&self) -> &[f64]; fn value(&self) -> f64; }
Captures the essence of a function evaluation.
Position x with the lowest corresponding value f(x).
x
f(x)
The actual value f(x).