mirror of
https://github.com/furyfire/trueskill.git
synced 2025-03-18 16:07:42 +00:00
Teams::concat was unnessecary
This commit is contained in:
@ -21,7 +21,7 @@ $team2 = new Team($p2, $gameInfo->getDefaultRating());
|
||||
|
||||
for($i = 0; $i < 5; ++$i) {
|
||||
echo "Iteration: " . $i . PHP_EOL;
|
||||
$teams = Teams::concat($team1, $team2);
|
||||
$teams = [$team1, $team2];
|
||||
|
||||
$calculator = new TwoPlayerTrueSkillCalculator();
|
||||
|
||||
|
Reference in New Issue
Block a user