mirror of
https://github.com/avitex/elixir-glicko
synced 2025-04-18 13:49:57 +00:00
Elixir implementation of the Glicko rating system
In an effort to give names to core concepts in the library, replace the current way of passing around tuples (of varying length and content) with appropriately named structs. As a consequence of creating `Player.{V1, V2}` and `Result`, a variety of functions that extracted values out of the tuples have either been removed or changed to access struct fields instead. |
||
---|---|---|
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