summaryrefslogtreecommitdiff
path: root/lib/scheduling/roundrobin.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-24 21:55:57 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-24 21:55:57 -0400
commit3a87a43fb993c08b780be484fa3d89bc3c568e64 (patch)
tree32782f4a2a11beb35598b434f9ddce9b88d2eeb9 /lib/scheduling/roundrobin.rb
parente1ef99a9ade5723c7bc65977546b4e1fdaab9688 (diff)
parent86992e85220e9a42ed498497ca733e39fb7266fc (diff)
Merge branch 'master' of http://github.com/LukeShu/leaguer
Diffstat (limited to 'lib/scheduling/roundrobin.rb')
-rw-r--r--lib/scheduling/roundrobin.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/scheduling/roundrobin.rb b/lib/scheduling/roundrobin.rb
new file mode 100644
index 0000000..e050c41
--- /dev/null
+++ b/lib/scheduling/roundrobin.rb
@@ -0,0 +1,24 @@
+
+module Scheduling
+ class RoundRobin
+ include Rails.application.routes.url_helpers
+
+ def initialize(tournament_stage)
+ @tournament_stage = tournament_stage
+ end
+
+ def create_matches
+ num_teams = (self.tournament.players.count/self.tournament.min_players_per_team).floor
+ num_matches = Float(num_teams/2)*(num_teams-1)
+
+ end
+
+ def match_finished(match)
+
+ end
+
+ def graph(current_user)
+
+ end
+ end
+end