diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-04-22 02:49:34 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-04-22 02:49:34 -0400 |
commit | 474a048ae4a4fae86e7fde93745f0ea79c7ed717 (patch) | |
tree | 63e87b93634d90c8236b09a02c19e37031d55304 /lib | |
parent | 7d40d2ed8bd686b32ff9bc620936a72044a610bc (diff) | |
parent | 9531e27d6414ca1e3c9a81b1a98f0550d74fad1d (diff) |
Merge remote-tracking branch 'origin/master'
Conflicts:
app/models/match.rb
Diffstat (limited to 'lib')
-rw-r--r-- | lib/scoring_algorithms/FibonacciPeerWithBlowout.rb | 16 | ||||
-rw-r--r-- | lib/scoring_algorithms/MarginalPeer.rb | 15 | ||||
-rw-r--r-- | lib/scoring_algorithms/Recommended.rb | 8 | ||||
-rw-r--r-- | lib/scoring_algorithms/ScoringAlgorithm.rb | 8 | ||||
-rw-r--r-- | lib/scoring_algorithms/ScoringAlgorithms.rb | 28 | ||||
-rw-r--r-- | lib/scoring_algorithms/WinnerTakesAll.rb | 16 |
6 files changed, 55 insertions, 36 deletions
diff --git a/lib/scoring_algorithms/FibonacciPeerWithBlowout.rb b/lib/scoring_algorithms/FibonacciPeerWithBlowout.rb new file mode 100644 index 0000000..19ac9a7 --- /dev/null +++ b/lib/scoring_algorithms/FibonacciPeerWithBlowout.rb @@ -0,0 +1,16 @@ +require 'ScoringAlgorithm' + +class FibonacciPeerWithBlowout < ScoringAlgorithm + + def self.score(match, interface) + match.players.each do |player| + scores[player.user_name] = scoreUser(interface.getStatistic(match, player, :votes), match.win?(player), match.blowout) + end + scores + end + + def self.scoreUser(votes, win, blowout) + fibonacci = Hash.new { |h,k| h[k] = k < 2 ? k : h[k-1] + h[k-2] } + fibonacci[votes+3] + (win ? blowout ? 12 : 10 : blowout ? 5 : 7) + end +end
\ No newline at end of file diff --git a/lib/scoring_algorithms/MarginalPeer.rb b/lib/scoring_algorithms/MarginalPeer.rb new file mode 100644 index 0000000..0e1cfa8 --- /dev/null +++ b/lib/scoring_algorithms/MarginalPeer.rb @@ -0,0 +1,15 @@ +require 'ScoringAlgorithm' + +class MarginalPeer < ScoringAlgorithm + + def self.score(match, interface) + match.players.each do |player| + scores[player.user_name] = scoreUser(interface.getStatistic(match, player, rating)) + end + scores + end + + def self.score(rating) + rating + end +end
\ No newline at end of file diff --git a/lib/scoring_algorithms/Recommended.rb b/lib/scoring_algorithms/Recommended.rb deleted file mode 100644 index 8033bd2..0000000 --- a/lib/scoring_algorithms/Recommended.rb +++ /dev/null @@ -1,8 +0,0 @@ -class Recommended - def self.score(votes, win, blowout) - fibonacci = Hash.new{ |h,k| h[k] = k < 2 ? k : h[k-1] + h[k-2] } - fibonacci[votes+3] + (win ? blowout ? 12 : 10 : blowout ? 5 : 7) - end -end - -#puts Recommended.score(4, true, false) diff --git a/lib/scoring_algorithms/ScoringAlgorithm.rb b/lib/scoring_algorithms/ScoringAlgorithm.rb new file mode 100644 index 0000000..6277da8 --- /dev/null +++ b/lib/scoring_algorithms/ScoringAlgorithm.rb @@ -0,0 +1,8 @@ +module Leaguer + module Scoring + class ScoringAlgorithm + def self.score(match, interface) + end + end + end +end
\ No newline at end of file diff --git a/lib/scoring_algorithms/ScoringAlgorithms.rb b/lib/scoring_algorithms/ScoringAlgorithms.rb deleted file mode 100644 index 7f8ec12..0000000 --- a/lib/scoring_algorithms/ScoringAlgorithms.rb +++ /dev/null @@ -1,28 +0,0 @@ -class ScoringAlgorithm - def self.score(*args) - end -end - -class FibonacciPeerWithBlowout < ScoringAlgorithm - def self.score(votes, win, blowout) - fibonacci = Hash.new{ |h,k| h[k] = k < 2 ? k : h[k-1] + h[k-2] } - fibonacci[votes+3] + (win ? blowout ? 12 : 10 : blowout ? 5 : 7) - end -end - -class WinnerTakesAll < ScoringAlgorithm - def self.score(win) - win.nil? ? 0.5 : win ? 1 : 0 - end -end - -class MarginalPeer < ScoringAlgorithm - def self.score(rating) - rating - end -end - - -#puts Recommended.score(4, true, false) -#puts WinnerTakesAll.score(nil) -#puts WinnerTakesAll.score(true) diff --git a/lib/scoring_algorithms/WinnerTakesAll.rb b/lib/scoring_algorithms/WinnerTakesAll.rb new file mode 100644 index 0000000..ad2471b --- /dev/null +++ b/lib/scoring_algorithms/WinnerTakesAll.rb @@ -0,0 +1,16 @@ +require 'ScoringAlgorithm' + +class WinnerTakesAll < ScoringAlgorithm + + def self.score(match, interface) + match.players.each do |player| + scores[player.user_name] = scoreUser(match.win?(player)) + end + scores + end + + + def self.score(win) + win.nil? ? 0.5 : win ? 1 : 0 + end +end
\ No newline at end of file |