Files
trueskill/src/FactorGraphs/Schedule.php

21 lines
316 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
abstract class Schedule
{
private $_name;
protected function __construct($name)
{
$this->_name = $name;
}
2022-07-05 15:55:47 +02:00
abstract public function visit($depth = -1, $maxDepth = 0);
public function __toString()
{
return $this->_name;
}
2022-07-05 15:55:47 +02:00
}