1
0
mirror of https://github.com/avitex/elixir-glicko synced 2024-11-24 12:09:58 +00:00
This commit is contained in:
avitex 2017-11-16 12:45:12 +11:00
parent c96d357812
commit 7d46daf078

View File

@ -75,7 +75,8 @@ defmodule Glicko do
# Calculation of the estimated variance of the player's rating based on game outcomes
defp calc_variance_estimate(%{player: player, results: results}) do
Enum.reduce(results, 0.0, fn result, acc ->
results
|> Enum.reduce(0.0, fn result, acc ->
tmp_e = calc_e(player, result)
acc + :math.pow(result.opponent_rating_deviation_g, 2) * tmp_e * (1 - tmp_e)
end)