mirror of
https://github.com/avitex/elixir-glicko
synced 2024-11-14 07:29:57 +00:00
Elixir implementation of the Glicko rating system
c1089996d3
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. In the interest of keeping the patch focused: primarily replace internal implementation of the added struct modules, and keep the interfaces for creation, conversion (player v1 to v2, and vice versa), and field access as they currently are. |
||
---|---|---|
.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