diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-28 00:08:01 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-28 00:08:01 -0400 |
commit | 1fb957aeb5c6eb8ec57ecf28b18479bb47093243 (patch) | |
tree | 387f8d4a5aebe7593dd6f09a0d277e1407facb36 /lib/scoring/README.md | |
parent | 952387be24043e76dfd9b7a461ee31d1246fa58e (diff) | |
parent | 6b66877bda4c0e4a33bb3109304636d5ada85904 (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'lib/scoring/README.md')
-rw-r--r-- | lib/scoring/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/scoring/README.md b/lib/scoring/README.md index 5beb0a2..dce71d0 100644 --- a/lib/scoring/README.md +++ b/lib/scoring/README.md @@ -4,12 +4,12 @@ Scoring interface Files in this directory should be _modules_ implementing the following interface: - - `stats_needed() => Array[i]=Symbol` + - `stats_needed(Match) => Array[]=Symbol` Returns which statistics need to be collected for this scoring algorithm. - - `score(match) => Hash[User]=Integer` + - `score(Match) => Hash[User]=Integer` User scores for this match, assuming statistics have been collected. |