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