RatingSystem

Trait RatingSystem 

Source
pub trait RatingSystem: Debug {
    // Required method
    fn round_update(
        &self,
        contest_weight: f64,
        standings: Vec<(&mut Player, usize, usize)>,
    );
}

Required Methods§

Source

fn round_update( &self, contest_weight: f64, standings: Vec<(&mut Player, usize, usize)>, )

Implementors§