2022-07-05 15:55:47 +02:00
|
|
|
<?php
|
|
|
|
|
2024-02-02 14:53:38 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-07-05 15:55:47 +02:00
|
|
|
namespace DNW\Skills\TrueSkill\Layers;
|
2010-09-18 21:19:51 -04:00
|
|
|
|
2022-07-05 15:33:34 +02:00
|
|
|
use DNW\Skills\TrueSkill\DrawMargin;
|
|
|
|
use DNW\Skills\TrueSkill\Factors\GaussianGreaterThanFactor;
|
|
|
|
use DNW\Skills\TrueSkill\Factors\GaussianWithinFactor;
|
2022-07-05 15:55:47 +02:00
|
|
|
use DNW\Skills\TrueSkill\TrueSkillFactorGraph;
|
2010-09-18 21:19:51 -04:00
|
|
|
|
2010-09-18 11:11:44 -04:00
|
|
|
class TeamDifferencesComparisonLayer extends TrueSkillFactorGraphLayer
|
|
|
|
{
|
2023-08-02 09:04:56 +00:00
|
|
|
private float $epsilon;
|
2022-07-05 15:55:47 +02:00
|
|
|
|
2023-08-03 09:13:19 +00:00
|
|
|
/**
|
|
|
|
* @param int[] $teamRanks
|
|
|
|
*/
|
2023-08-01 13:53:19 +00:00
|
|
|
public function __construct(TrueSkillFactorGraph $parentGraph, private readonly array $teamRanks)
|
2010-09-18 11:11:44 -04:00
|
|
|
{
|
|
|
|
parent::__construct($parentGraph);
|
2016-05-24 16:31:21 +02:00
|
|
|
$gameInfo = $this->getParentFactorGraph()->getGameInfo();
|
2023-08-01 13:53:19 +00:00
|
|
|
$this->epsilon = DrawMargin::getDrawMarginFromDrawProbability($gameInfo->getDrawProbability(), $gameInfo->getBeta());
|
2010-09-18 11:11:44 -04:00
|
|
|
}
|
|
|
|
|
2023-08-02 09:04:56 +00:00
|
|
|
public function buildLayer(): void
|
2010-09-18 11:11:44 -04:00
|
|
|
{
|
2016-05-24 16:31:21 +02:00
|
|
|
$inputVarGroups = $this->getInputVariablesGroups();
|
2023-08-03 13:08:04 +00:00
|
|
|
$inputVarGroupsCount = count($inputVarGroups);
|
2010-09-18 11:11:44 -04:00
|
|
|
|
2016-05-24 14:10:39 +02:00
|
|
|
for ($i = 0; $i < $inputVarGroupsCount; $i++) {
|
2023-08-01 13:53:19 +00:00
|
|
|
$isDraw = ($this->teamRanks[$i] == $this->teamRanks[$i + 1]);
|
2016-05-24 16:31:21 +02:00
|
|
|
$teamDifference = $inputVarGroups[$i][0];
|
2010-09-18 11:11:44 -04:00
|
|
|
|
|
|
|
$factor =
|
|
|
|
$isDraw
|
2023-08-01 13:53:19 +00:00
|
|
|
? new GaussianWithinFactor($this->epsilon, $teamDifference)
|
|
|
|
: new GaussianGreaterThanFactor($this->epsilon, $teamDifference);
|
2010-09-18 11:11:44 -04:00
|
|
|
|
|
|
|
$this->addLayerFactor($factor);
|
|
|
|
}
|
|
|
|
}
|
2022-07-05 15:55:47 +02:00
|
|
|
}
|