1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
extern crate serde; extern crate serde_json; #[macro_use] extern crate serde_derive; extern crate rand; extern crate time; extern crate rayon; extern crate arrayvec; #[macro_use] #[cfg(feature = "heuristic-random")] extern crate lazy_static; pub mod input; pub mod engine; pub mod strategy;