summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-30 10:52:56 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-30 10:52:56 -0400
commitf1b2a1f25b839237ff1791ffc4586bc466409874 (patch)
tree5770fc3ed0e3145d6617db44cb29ecd96b82dc44 /lib
parent55f6da9556391a9676a425256a9ae1048c300e17 (diff)
remove debug code
Diffstat (limited to 'lib')
-rw-r--r--lib/sampling/manual.rb7
-rw-r--r--lib/scheduling/elimination.rb10
2 files changed, 0 insertions, 17 deletions
diff --git a/lib/sampling/manual.rb b/lib/sampling/manual.rb
index a9f9de4..853516c 100644
--- a/lib/sampling/manual.rb
+++ b/lib/sampling/manual.rb
@@ -44,17 +44,10 @@ module Sampling
def handle_user_interaction(user, params)
# => Save sampling_params as statistics
- require 'pp'
- puts('>'*80)
- pp @match
- puts('>'*80)
if (@match.tournament_stage.tournament.hosts.include? user)
manual_params = params.require(:manual)
winner = Team.find(manual_params[:winner])
@match.users.each do |user|
- puts('>'*80)
- pp "MAKING statistics BIIIIIIIITCH"
- puts('>'*80)
Statistic.create(match: @match, user: user,
name: "win", value: winner.users.include?(user))
@match.stats_from(self.class).reject{|s|s=="win"}.each do |stat|
diff --git a/lib/scheduling/elimination.rb b/lib/scheduling/elimination.rb
index 622199c..a2ff989 100644
--- a/lib/scheduling/elimination.rb
+++ b/lib/scheduling/elimination.rb
@@ -37,7 +37,6 @@ module Scheduling
end
def finish_match(match)
- require 'pp'
logBase = match.tournament_stage.tournament.min_teams_per_match
matches = match.tournament_stage.matches_ordered
cur_match_num = matches.invert[match]
@@ -45,10 +44,7 @@ module Scheduling
match.winner.matches.push(matches[(cur_match_num+logBase-2)/logBase])
end
if matches[(cur_match_num+logBase-2)/logBase].teams.count == match.tournament_stage.tournament.min_teams_per_match
- puts(">"*80)
- pp matches[(cur_match_num+logBase-2)/logBase].status
matches[(cur_match_num+logBase-2)/logBase].update(status: 1)
- puts(">"*80)
end
end
@@ -81,20 +77,14 @@ module Scheduling
pBase = 1
(1..matches.count).each do |i|
matchDepth = Math.log(i*(logBase-1), logBase).floor+1
- puts matchDepth
if matchDepth > Math.log(base*(logBase-1), logBase).floor+1
pBase = base
base = i
end
- puts base
rh = 100 / (logBase**(depth-1)+1) - 100/height;
- puts rh
rw = 100/(depth+1) - 5
- puts rw
rx = 50/(depth+1) + 100/(depth+1)*(depth-matchDepth)
- puts rx
ry = 100/(logBase**(matchDepth-1)+1) * (i-base+1) - rh/2
- puts ry
str += "\t<a id=\"svg-match-#{i}\" xlink:href=\"#{match_path(matches[i])}\"><g>\n"
str += "\t\t<rect height=\"#{rh}%\" width=\"#{rw}%\" x=\"#{rx}%\" y=\"#{ry}%\" fill=\"url(#gradMatch)\" rx=\"5px\" stroke-width=\"2\""