pub trait FitnessEvaluator { // Required method fn evaluate(&self, code: &Vec<u8>) -> f64; }
Defines the evaluation heuristic for the current simulation.
Evaluate the provided genetic code, return a score.
Higher = better.