rush/src/gp/individual.rs
Rowan Torbitzky-Lane 7e7d5523e9
All checks were successful
/ Test-Suite (push) Successful in 1m7s
about to start the main gp loop
2025-04-29 16:40:39 -05:00

10 lines
213 B
Rust

use crate::push::state::Gene;
use rust_decimal::Decimal;
#[derive(Clone)]
pub struct Individual {
pub plushy: Vec<Gene>,
pub total_fitness: Option<Decimal>,
pub fitness_cases: Option<Vec<Decimal>>,
}