//! # Ratel
//!
//! A library for running multi-armed bandit simulations.
//!
//! The simulation has two components: a Bandit with some number of arms which each has a payout
//! according to some distribution, and an Agent that uses some strategy to learn the optimal
//! bandit arm. A Game then consists of an Agent learning about a Bandit by pulling arms according
//! to its preferred strategy.
extern crate lazy_static;
pub use ;
pub use ;
pub use Game;
pub use ;