1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! Evolutionary algorithm toolkit
extern crate bit_vec;

extern crate rand;

extern crate serde;

#[macro_use]
extern crate serde_derive;

#[cfg(feature = "par")]
extern crate rayon;

pub mod ops;

pub mod algo;

pub mod traits;