Trait GeneticConstraint

Source
pub trait GeneticConstraint<G: Genome>: Send + Sync {
    // Required method
    fn is_valid(&self, genome: &G) -> bool;
}

Required Methods§

Source

fn is_valid(&self, genome: &G) -> bool

Implementors§