mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
22 lines
412 B
PHP
22 lines
412 B
PHP
<?php
|
|
namespace Moserware\Skills\FactorGraphs;
|
|
|
|
require_once(dirname(__FILE__) . "/VariableFactory.php");
|
|
|
|
class FactorGraph
|
|
{
|
|
private $_variableFactory;
|
|
|
|
public function &getVariableFactory()
|
|
{
|
|
$factory = &$this->_variableFactory;
|
|
return $factory;
|
|
}
|
|
|
|
public function setVariableFactory(VariableFactory &$factory)
|
|
{
|
|
$this->_variableFactory = &$factory;
|
|
}
|
|
}
|
|
?>
|