calco 0.1.0

Generic interface to work with genetic algorithms.
Documentation
1
2
3
4
5
pub trait ProbaSelection<T: Clone> {

    fn push(&self, proba: f32, data: T);
    fn pop(&self) -> Option<T>;
}