ratel_bandit 0.2.3

Rust Implementation of a Muti-armed Bandit Simulator
Documentation
1
2
3
4
5
6
7
8
/// Trait containing all methods required by all steppers.
pub trait Stepper {
    /// Resets the stepper to its initial value.
    fn reset(&mut self);

    /// Returns the current step size.
    fn step(&mut self, arm: usize) -> f64;
}