mirror of
https://github.com/avitex/elixir-glicko
synced 2024-11-14 07:29:57 +00:00
Elixir implementation of the Glicko rating system
9cb997e2c1
On 2022-03-22, the Glicko-2 algorithm was updated, with the following line being added to the [Glicko web page][1]: > This document has been revised on March 22, 2022, to replace a "<" > with "<=" in item 4(b) of Step 5 (page 3). See the [Glicko-2 document][2] for details. Tests for this change are missing, as at the time of writing I couldn't figure out a test that only made use of the current public interface. [1]: http://glicko.net/glicko.html [2]: http://glicko.net/glicko/glicko2.pdf |
||
---|---|---|
.github | ||
lib | ||
test | ||
.credo.exs | ||
.formatter.exs | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
mix.exs | ||
mix.lock | ||
README.md |
Glicko
Implementation of the Glicko rating system.
Documentation hosted on hexdocs.
Installation
Add glicko
to your list of dependencies in mix.exs
:
def deps do
[{:glicko, "~> 0.7.0"}]
end