Start of the long road towards debugging it to work

This commit is contained in:
Jeff Moser
2010-09-23 22:14:56 -04:00
parent 99e1adf7df
commit f081a6a70a
5 changed files with 41 additions and 14 deletions

View File

@ -1,11 +1,11 @@
<?php
namespace Moserware\Skills\TrueSkill;
require_once(dirname(__FILE__) . '../Rating.php');
require_once(dirname(__FILE__) . '../FactorGraphs/FactorList.php');
require_once(dirname(__FILE__) . '../FactorGraphs/Schedule.php');
require_once(dirname(__FILE__) . '../FactorGraphs/VariableFactory.php');
require_once(dirname(__FILE__) . '../Numerics/GaussianDistribution.php');
require_once(dirname(__FILE__) . './../Rating.php');
require_once(dirname(__FILE__) . './../FactorGraphs/FactorList.php');
require_once(dirname(__FILE__) . './../FactorGraphs/Schedule.php');
require_once(dirname(__FILE__) . './../FactorGraphs/VariableFactory.php');
require_once(dirname(__FILE__) . './../Numerics/GaussianDistribution.php');
require_once(dirname(__FILE__) . '/Layers/PlayerPriorValuesToSkillsLayer.php');
require_once(dirname(__FILE__) . '/Layers/PlayerSkillsToPerformancesLayer.php');
require_once(dirname(__FILE__) . '/Layers/IteratedTeamDifferencesInnerLayer.php');