mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 09:57:40 +00:00
19 lines
304 B
PHP
19 lines
304 B
PHP
|
<?php
|
||
|
namespace Moserware\Skills\FactorGraphs;
|
||
|
|
||
|
class FactorGraph
|
||
|
{
|
||
|
private $_variableFactory;
|
||
|
|
||
|
public function getVariableFactory()
|
||
|
{
|
||
|
return $this->_variableFactory;
|
||
|
}
|
||
|
|
||
|
public function setVariableFactory($factory)
|
||
|
{
|
||
|
$this->_variableFactory = $factory;
|
||
|
}
|
||
|
}
|
||
|
?>
|