calco 0.1.0

Generic interface to work with genetic algorithms.
Documentation
//! https://en.wikipedia.org/wiki/Genetic_algorithm
//!
//! # Examples
//!
//! You can explicitly create the progres loop of the a `Universe<T>`:
//!
//! ```
//! use calco::Universe;
//!
//! // TO DO !!!
//!
//! // let world: Universe<i32> = Universe::from_pop(config, [600, -2000, 42]);
//! ```
//!
//! Or you can use the implemented one:
//!
//! ```
//! use calco::Universe;
//!
//! // TO DO !!!
//!
//! // let world: Universe<i32> = Universe::from_pop(config, [600, -2000, 42]);
//! ```

mod universe;
mod mutable;
mod reproducible;
mod evaluable;
// mod probaselection; // do this absolutly

pub use universe::Universe;
pub use universe::Config;
pub use universe::StopCondition;

pub use mutable::Mutable;
pub use reproducible::Reproducible;
pub use evaluable::Evaluable;
// pub use probaselection::ProbaSelection; // do this absolutly