getParentFactorGraph()->getGameInfo(); $this->epsilon = DrawMargin::getDrawMarginFromDrawProbability($gameInfo->getDrawProbability(), $gameInfo->getBeta()); } public function buildLayer(): void { $inputVarGroups = $this->getInputVariablesGroups(); $inputVarGroupsCount = count($inputVarGroups); for ($i = 0; $i < $inputVarGroupsCount; $i++) { $isDraw = ($this->teamRanks[$i] == $this->teamRanks[$i + 1]); $teamDifference = $inputVarGroups[$i][0]; $factor = $isDraw ? new GaussianWithinFactor($this->epsilon, $teamDifference) : new GaussianGreaterThanFactor($this->epsilon, $teamDifference); $this->addLayerFactor($factor); } } }