Example #1
0
 /// <summary>
 /// Return the average skill value of the player scaled down
 /// to the scale used by the algorithm's internal workings.
 /// </summary>
 /// <returns></returns>
 public double GetGlicko2Rating() => _ratingSystem.ConvertRatingToGlicko2Scale(_rating);
Example #2
0
 /// <summary>
 /// Return the average skill value of the player scaled down
 /// to the scale used by the algorithm's internal workings.
 /// </summary>
 /// <returns></returns>
 public double GetGlicko2Rating()
 {
     return(_ratingSystem.ConvertRatingToGlicko2Scale(_rating));
 }