1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Collection of data structures that may help with solving different AI problems.

pub mod bucket_strainer;
pub mod grid;
pub mod switch;

pub use bucket_strainer::*;
pub use grid::*;
pub use switch::*;

pub type Scalar = f64;