Files
trueskill/src/FactorGraphs/ScheduleStep.php

19 lines
418 B
PHP
Raw Normal View History

2022-07-05 15:55:47 +02:00
<?php
namespace DNW\Skills\FactorGraphs;
class ScheduleStep extends Schedule
{
2023-08-02 13:29:14 +00:00
public function __construct(string $name, private readonly Factor $factor, private int $index)
{
parent::__construct($name);
}
2023-08-02 09:36:44 +00:00
public function visit(int $depth = -1, int $maxDepth = 0): float
{
$currentFactor = $this->factor;
2022-07-05 15:55:47 +02:00
return $currentFactor->updateMessageIndex($this->index);
}
2022-07-05 15:55:47 +02:00
}