Files
trueskill/src/FactorGraphs/Schedule.php

18 lines
325 B
PHP
Raw Normal View History

2022-07-05 15:55:47 +02:00
<?php
namespace DNW\Skills\FactorGraphs;
2010-09-30 08:25:31 -04:00
2022-07-05 16:21:06 +02:00
abstract class Schedule implements \Stringable
{
2023-08-02 09:04:56 +00:00
protected function __construct(private string $name)
{
}
2023-08-02 09:36:44 +00:00
abstract public function visit(int $depth = -1, int $maxDepth = 0): float;
2022-07-05 16:21:06 +02:00
public function __toString(): string
{
2023-08-02 09:36:44 +00:00
return $this->name;
}
2022-07-05 15:55:47 +02:00
}