1
0
mirror of https://github.com/avitex/elixir-glicko synced 2024-09-21 07:09:57 +00:00
Elixir implementation of the Glicko rating system
Go to file
Mikael Muszynski 9cb997e2c1 Update algorithm to match the latest Glicko-2 documentation
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
2024-06-10 13:02:23 +02:00
.github Upgrade to GitHub-native Dependabot 2024-06-10 13:01:50 +02:00
lib Update algorithm to match the latest Glicko-2 documentation 2024-06-10 13:02:23 +02:00
test Run mix format (#1) 2020-01-19 13:58:40 +00: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 Bump credo from 0.8.8 to 1.3.2 (#9) 2020-04-21 01:04:59 +10:00
mix.lock Update dependency "credo" 2024-06-10 13:00:04 +02:00
README.md update to travis.com 2020-04-14 18:36:22 +10: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