2010-09-18 11:11:44 -04:00
|
|
|
<?php
|
|
|
|
namespace Moserware\Skills\TrueSkill\Layers;
|
|
|
|
|
2010-09-25 10:15:51 -04:00
|
|
|
require_once(dirname(__FILE__) . "/../../FactorGraphs/FactorGraphLayer.php");
|
2010-09-25 12:50:33 -04:00
|
|
|
require_once(dirname(__FILE__) . "/../TrueSkillFactorGraph.php");
|
2010-09-18 21:19:51 -04:00
|
|
|
|
|
|
|
use Moserware\Skills\FactorGraphs\FactorGraphLayer;
|
2010-09-25 12:50:33 -04:00
|
|
|
use Moserware\Skills\TrueSkill\TrueSkillFactorGraph;
|
2010-09-18 21:19:51 -04:00
|
|
|
|
2010-09-18 11:11:44 -04:00
|
|
|
abstract class TrueSkillFactorGraphLayer extends FactorGraphLayer
|
|
|
|
{
|
|
|
|
public function __construct(TrueSkillFactorGraph $parentGraph)
|
|
|
|
{
|
|
|
|
parent::__construct($parentGraph);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|