mirror of
https://github.com/furyfire/trueskill.git
synced 2025-03-31 13:14:02 +00:00
Start of factor graph port. Things don't work yet, but a lot of syntax updates towards PHP
This commit is contained in:
18
PHPSkills/FactorGraphs/FactorGraph.php
Normal file
18
PHPSkills/FactorGraphs/FactorGraph.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
namespace Moserware\Skills\FactorGraphs;
|
||||
|
||||
class FactorGraph
|
||||
{
|
||||
private $_variableFactory;
|
||||
|
||||
public function getVariableFactory()
|
||||
{
|
||||
return $this->_variableFactory;
|
||||
}
|
||||
|
||||
public function setVariableFactory($factory)
|
||||
{
|
||||
$this->_variableFactory = $factory;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user