mirror of
https://github.com/avitex/elixir-glicko
synced 2024-11-24 12:09:58 +00:00
Elixir implementation of the Glicko rating system
28cea24d66
1. `rating`, `rating_deviation`, and `rating_interval` all omit the possibility of receiving a `nil` as the second argument. 2. Writing out `Result.t()` results in `dialyzer` looking for `Elixir.Result.t()`, instead of calling the local `Elixir.Glicko.Result.t()`. |
||
---|---|---|
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.6.0"}]
end