This commit is contained in:
rendo 2026-03-30 12:57:25 +05:00
commit 25c04be661
5 changed files with 59 additions and 16 deletions

View file

@ -2,6 +2,7 @@ use std::{collections::VecDeque, fmt::Display};
use crate::genetics::gene::Gene;
#[derive(PartialEq,Eq)]
pub struct PlantGenome {
pub(crate) graph: Vec<(Gene,Vec<usize>)>,
}