1
0
mirror of https://github.com/avitex/elixir-glicko synced 2025-01-15 10:49:58 +00:00
Elixir implementation of the Glicko rating system
Go to file
Mikael Muszynski 721ddbef2b
Convert Player (v1/v2) and Result to structs
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.
2023-08-02 20:21:57 +02:00
lib Convert Player (v1/v2) and Result to structs 2023-08-02 20:21:57 +02:00
test Convert Player (v1/v2) and Result to structs 2023-08-02 20:21:57 +02:00
.credo.exs Add .credo.exs to .formatter.exs (#4) 2020-01-19 14:57:32 +00:00
.formatter.exs Add .credo.exs to .formatter.exs (#4) 2020-01-19 14:57:32 +00:00
.gitignore Initial commit 2017-11-15 20:32:39 +11:00
.travis.yml Update Elixir version (#2) 2020-01-19 14:43:22 +00:00
LICENSE Update README and LICENSE 2020-01-19 14:24:52 +00:00
mix.exs v0.7.0 2020-02-24 09:22:46 +11:00
mix.lock Update ex_doc hex (#6) 2020-02-04 23:07:28 +00:00
README.md v0.7.0 2020-02-24 09:22:46 +11:00

Build Status Hex.pm Hex Docs Inline docs

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