glicko2

glicko2 crate glicko2 documentation

This crate implements the glicko2 rating system. It's a rating system appropriate for 1v1 games and is leveraged by many chess leagues.

Usage

This example comes straight from the glicko2 rating pdf:

```rust extern crate glicko2;

use glicko2::{GameResult, GlickoPlayer};

fn main() { let exampleplayer = GlickoPlayer { rating: 1500.0, ratingdeviation: 200.0, }; let mut results = vec![]; results.push(GameResult::win(GlickoPlayer { rating: 1400.0, ratingdeviation: 30.0, })); results.push(GameResult::loss(GlickoPlayer { rating: 1550.0, ratingdeviation: 100.0, })); results.push(GameResult::loss(GlickoPlayer { rating: 1700.0, ratingdeviation: 300.0, })); // We are converting the result of newrating to a GlickoPlayer immediately, throwing away the // benefits of Glicko2 over Glicko for the sake of matching the example in the glicko2 pdf. // In a real application, you'd likely want to save the Glicko2Player and convert to // GlickoPlayer for display purposes only. let newplayer: GlickoPlayer = glicko2::newrating(exampleplayer, &results, 0.5).into(); println!( "New rating: {} New rating deviation: {}", newplayer.rating, newplayer.ratingdeviation ); } ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.