//! darwin-rs: evolutionary algorithms with Rust
//!
//! Written by Willi Kappler, Version 0.4 (2017.06.26)
//!
//! Repository: https://github.com/willi-kappler/darwin-rs
//!
//! License: MIT
//!
//! This library allows you to write evolutionary algorithms (EA) in Rust.
//! Examples provided: TSP, Sudoku, Queens Problem, OCR
//!
//!
// For clippy
// #![feature(plugin)]
//
// #![plugin(clippy)]
// For error-chain
extern crate error_chain;
extern crate log;
extern crate jobsteal;
pub use Individual;
pub use Simulation;
pub use ;
pub use Population;
pub use ;