package glicko2

  1. Overview
  2. Docs
type player = {
  1. rating : float;
  2. rating_deviation : float;
  3. volatility : float;
}

The type containing the data need for the Glicko2 algorithm. You can create this structure yourself, but we recommend you use the "default_player" function defined in this module.

type player_result = (player, player_error) result