Files
trueskill/src/FactorGraphs/Schedule.php

18 lines
320 B
PHP
Raw Normal View History

<?php namespace Moserware\Skills\FactorGraphs;
2010-09-30 08:25:31 -04:00
abstract class Schedule
{
private $_name;
protected function __construct($name)
{
$this->_name = $name;
}
public abstract function visit($depth = -1, $maxDepth = 0);
public function __toString()
{
return $this->_name;
}
}