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
|
2010-09-18 11:11:44 -04:00
|
|
|
{
|
2023-08-02 09:04:56 +00:00
|
|
|
protected function __construct(private string $name)
|
2010-09-18 11:11:44 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-08-02 09:36:44 +00:00
|
|
|
abstract public function visit(int $depth = -1, int $maxDepth = 0): float;
|
2010-09-18 11:11:44 -04:00
|
|
|
|
2022-07-05 16:21:06 +02:00
|
|
|
public function __toString(): string
|
2010-09-18 11:11:44 -04:00
|
|
|
{
|
2023-08-02 09:36:44 +00:00
|
|
|
return $this->name;
|
2010-09-18 11:11:44 -04:00
|
|
|
}
|
2022-07-05 15:55:47 +02:00
|
|
|
}
|