pub trait MultiObjective {
const NF: usize;
// Required method
fn f(x: Vec<f64>) -> Vec<f64>;
}
Expand description
This is a trait that ensures consistent implementation of multi-objective benchmark functions
Required Associated Constants§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.