mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-11-04 10:12:28 +01: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;
 | 
						|
    }
 | 
						|
}
 | 
						|
?>
 |