mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-21 22:17:41 +01:00
Merge branch 'bugfix/buchholzcut-fix' into develop
This commit is contained in:
commit
7ff79c2224
@ -231,7 +231,7 @@ class Pairtwo6 extends Pairtwo6Model implements ReaderInterface
|
||||
$tiebreak = Tiebreak::BuchholzMed;
|
||||
break;
|
||||
case 3:
|
||||
$tiebreak = Tiebreak::BuchholzMed;
|
||||
$tiebreak = Tiebreak::BuchholzCut;
|
||||
break;
|
||||
case 4:
|
||||
$tiebreak = Tiebreak::Sonneborn;
|
||||
|
@ -205,14 +205,14 @@ abstract class Tiebreaks extends Tournament
|
||||
return 1;
|
||||
}
|
||||
|
||||
if ($b->getOpponent()->getElo('Nation') == $a->getOpponent()->getElo('Nation')) {
|
||||
if ($b->getOpponent()->getPoints() == $a->getOpponent()->getPoints()) {
|
||||
return 0;
|
||||
}
|
||||
return ($b->getOpponent()->getElo('Nation') > $a->getOpponent()->getElo('Nation')) ? 1 : -1;
|
||||
return ($a->getOpponent()->getPoints() > $b->getOpponent()->getPoints()) ? 1 : -1;
|
||||
});
|
||||
|
||||
array_slice($intpairings, $cutlowest);
|
||||
array_slice($intpairings, 0 - $cuthighest);
|
||||
$intpairings = array_slice($intpairings, $cutlowest);
|
||||
$intpairings = array_slice($intpairings, 0 - $cuthighest);
|
||||
|
||||
foreach ($intpairings as $intkey => $intpairing) {
|
||||
if (!is_null($intpairing->getOpponent())) {
|
||||
|
Loading…
Reference in New Issue
Block a user