1
0
mirror of https://github.com/furyfire/trueskill.git synced 2025-01-29 22:55:56 +00:00
trueskill/PHPSkills/FactorGraphs/FactorGraph.php

19 lines
307 B
PHP

<?php
namespace Moserware\Skills\FactorGraphs;
class FactorGraph
{
private $_variableFactory;
public function &getVariableFactory()
{
return $this->_variableFactory;
}
public function setVariableFactory(&$factory)
{
$this->_variableFactory = &$factory;
}
}
?>