Files
trueskill/src/FactorGraphs/ScheduleStep.php

19 lines
396 B
PHP
Raw Normal View History

2022-07-05 15:55:47 +02:00
<?php
namespace DNW\Skills\FactorGraphs;
class ScheduleStep extends Schedule
{
2022-07-05 16:21:06 +02:00
public function __construct($name, private readonly Factor $_factor, private $_index)
{
parent::__construct($name);
}
public function visit($depth = -1, $maxDepth = 0)
{
$currentFactor = $this->_factor;
2022-07-05 15:55:47 +02:00
2022-07-05 16:21:06 +02:00
return $currentFactor->updateMessageIndex($this->_index);
}
2022-07-05 15:55:47 +02:00
}