mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-11-04 10:12:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Moserware\Skills\TrueSkill\Layers;
 | 
						|
 | 
						|
require_once(dirname(__FILE__) . "../../FactorGraphs/FactorGraphLayer.php");
 | 
						|
 | 
						|
use Moserware\Skills\FactorGraphs\FactorGraphLayer;
 | 
						|
 | 
						|
abstract class TrueSkillFactorGraphLayer extends FactorGraphLayer
 | 
						|
{
 | 
						|
    public function __construct(TrueSkillFactorGraph $parentGraph)
 | 
						|
    {
 | 
						|
        parent::__construct($parentGraph);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
?>
 |