wrapper pt1

This commit is contained in:
Rendo 2026-04-02 00:32:52 +05:00
commit 219fc97519
6 changed files with 58 additions and 4 deletions

View file

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