summaryrefslogtreecommitdiff
path: root/lib/scoring/FibonacciPeerWithBlowout.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-22 18:17:13 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-22 18:17:13 -0400
commit7deb9c1c7acadf9a5b638313f51ba9dc60624672 (patch)
tree8493ff9d0f862e294b3f84ae695549ffd6e697f4 /lib/scoring/FibonacciPeerWithBlowout.rb
parent266602ea1e97d886f031b80add7a760034221f76 (diff)
made naming conventions consistent
Diffstat (limited to 'lib/scoring/FibonacciPeerWithBlowout.rb')
-rw-r--r--lib/scoring/FibonacciPeerWithBlowout.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/scoring/FibonacciPeerWithBlowout.rb b/lib/scoring/FibonacciPeerWithBlowout.rb
deleted file mode 100644
index 19ac9a7..0000000
--- a/lib/scoring/FibonacciPeerWithBlowout.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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