calco 0.1.0

Generic interface to work with genetic algorithms.
Documentation
1
2
3
4
5
pub trait Evaluable {

    /// return the actual fitness of this individual
    fn evaluate(&self) -> f32;
}