ratel_bandit 0.2.3

Rust Implementation of a Muti-armed Bandit Simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility functions and modules used to help the Agents play the Bandits.

pub use arg_bounds::ArgBounds;
pub use counter::{Counter, RecordCounter};
pub use stepper::{ConstantStepper, HarmonicStepper, Stepper};
pub use timer::print_hms;

mod arg_bounds;
mod counter;
mod stepper;
mod timer;