pub trait EvaluateObjectiveValue<G>:
Clone
+ Debug
+ Syncwhere
G: Genome,{
// Required method
fn evaluate(&self, genome: &G) -> f64;
}
Expand description
Evaluate the objective value of an individual.
Potentially expensive operation.
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.