rust-elo-multiplayer 0.1.2

Calculate ELO with multiple players
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 2 items with examples
  • Size
  • Source code size: 5.36 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.25 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • mattiasmucherie/rust_tutorial
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mattiasmucherie

rust-elo-multiplayer

Rust crate for calculating multiplayer rating based on elo ranking system

Example usage

use rust_elo_multiplayer::EloRank;

fn main() {
    let players: Vec<f64> = vec![1000.0, 1000.0, 1000., 1000.0];
    let elo = EloRank { k: 32, players };
    let expected: Vec<f64> = elo.calculate();
}