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