//! Genetic Programming for Rust
//!
//! This crate implements a Genetic Programming library inspired by the GP in
//! [Python's DEAP](https://github.com/DEAP/deap). This library is hoped to be
//! more performant and use Rust's typesystem to obtain simpler code.
//!
//! Presently under [active development](https://github.com/46bit/evco).
// https://pascalhertleif.de/artikel/good-practices-for-writing-rust-libraries/
extern crate rand;
// #[cfg(test)]
// extern crate quickcheck;
/// Genetic Programming.