1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-06 22:44:14 +00:00

fixed generation sort

This commit is contained in:
2015-02-06 23:29:00 +00:00
parent cba5d0a96d
commit eba979740c
5 changed files with 17 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
class Pool
def onePool(wrestlers,weight_id,tournament)
wrestlers.each do |w|
wrestlers.sort_by{|x|[x.original_seed]}.each do |w|
w.poolNumber = 1
w.save
end
@@ -12,7 +12,7 @@ class Pool
#wrestlers.sort_by{|x|[x.original_seed]}
pool = 1
wrestlers.each do |w|
wrestlers.sort_by{|x|[x.original_seed]}.each do |w|
w.poolNumber = pool
w.save
if pool < 2
@@ -27,16 +27,16 @@ class Pool
def fourPools(wrestlers,weight_id,tournament)
#wrestlers.sort_by{|x|[x.original_seed]}
pool = 1
wrestlers.each do |w|
w.poolNumber = pool
@pool = 1
wrestlers.sort_by{|x|[x.original_seed]}.each do |w|
w.poolNumber = @pool
w.save
if pool < 4
pool = pool + 1
if @pool < 4
@pool = @pool + 1
else
pool =1
@pool =1
end
end
roundRobin(1,tournament,weight_id)

View File

@@ -6,7 +6,7 @@ class Weight < ActiveRecord::Base
def generatePool
@wrestlers = Wrestler.where(weight_id: self.id)
@wrestlers.sort_by{|x|[x.original_seed]}
#@wrestlers.sort_by{|w| [w.original_seed]}
if self.pools == 1
@pool = Pool.new
@pool.onePool(@wrestlers,self.id,self.tournament_id)