priorLayer = new PlayerPriorValuesToSkillsLayer($this, $teams); $newFactory = new VariableFactory( fn () => GaussianDistribution::fromPrecisionMean(0, 0) ); $this->setVariableFactory($newFactory); $this->layers = [ $this->priorLayer, new PlayerSkillsToPerformancesLayer($this), new PlayerPerformancesToTeamPerformancesLayer($this), new IteratedTeamDifferencesInnerLayer( $this, new TeamPerformancesToTeamPerformanceDifferencesLayer($this), new TeamDifferencesComparisonLayer($this, $teamRanks) ), ]; } public function getGameInfo(): GameInfo { return $this->gameInfo; } public function buildGraph(): void { $lastOutput = NULL; $layers = $this->layers; foreach ($layers as $currentLayer) { if ($lastOutput != NULL) { $currentLayer->setInputVariablesGroups($lastOutput); } $currentLayer->buildLayer(); $lastOutput = $currentLayer->getOutputVariablesGroups(); } } public function runSchedule(): void { $fullSchedule = $this->createFullSchedule(); $fullSchedule->visit(); } public function getProbabilityOfRanking(): float { $factorList = new FactorList(); $layers = $this->layers; foreach ($layers as $currentLayer) { $localFactors = $currentLayer->getLocalFactors(); foreach ($localFactors as $currentFactor) { $localCurrentFactor = $currentFactor; $factorList->addFactor($localCurrentFactor); } } $logZ = $factorList->getLogNormalization(); return exp($logZ); } private function createFullSchedule(): ScheduleSequence { $fullSchedule = []; $layers = $this->layers; foreach ($layers as $currentLayer) { $currentPriorSchedule = $currentLayer->createPriorSchedule(); if ($currentPriorSchedule != NULL) { $fullSchedule[] = $currentPriorSchedule; } } $allLayersReverse = array_reverse($this->layers); foreach ($allLayersReverse as $currentLayer) { $currentPosteriorSchedule = $currentLayer->createPosteriorSchedule(); if ($currentPosteriorSchedule != NULL) { $fullSchedule[] = $currentPosteriorSchedule; } } return new ScheduleSequence('Full schedule', $fullSchedule); } public function getUpdatedRatings(): RatingContainer { $result = new RatingContainer(); $priorLayerOutputVariablesGroups = $this->priorLayer->getOutputVariablesGroups(); foreach ($priorLayerOutputVariablesGroups as $currentTeam) { foreach ($currentTeam as $currentPlayer) { $localCurrentPlayer = $currentPlayer->getKey(); $newRating = new Rating( $currentPlayer->getValue()->getMean(), $currentPlayer->getValue()->getStandardDeviation() ); $result->setRating($localCurrentPlayer, $newRating); } } return $result; } }