1//! Collection of data structures that may help with solving different AI problems. 2 3pub mod bucket_strainer; 4pub mod grid; 5pub mod switch; 6 7pub use bucket_strainer::*; 8pub use grid::*; 9pub use switch::*; 10 11pub type Scalar = f64;