mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-01 05:34:00 +00:00
Added/converted a file I missed earlier (TrueSkillFactorGraph) and started adding using's and require_once's
This commit is contained in:
@ -1,7 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Moserware\Skills\TrueSkill\Factors;
|
||||
|
||||
require_once(dirname(__FILE__) . "GaussianFactor.php");
|
||||
require_once(dirname(__FILE__) . "../TruncatedGaussianCorrectionFunctions.php");
|
||||
require_once(dirname(__FILE__) . "../../FactorGraphs/Message.php");
|
||||
require_once(dirname(__FILE__) . "../../FactorGraphs/Variable.php");
|
||||
require_once(dirname(__FILE__) . "../../Numerics/GaussianDistribution.php");
|
||||
|
||||
use Moserware\Numerics\GaussianDistribution;
|
||||
use Moserware\Skills\TrueSkill\TruncatedGaussianCorrectionFunctions;
|
||||
use Moserware\Skills\FactorGraphs\Message;
|
||||
use Moserware\Skills\FactorGraphs\Variable;
|
||||
|
||||
/// <summary>
|
||||
/// Factor representing a team difference that has not exceeded the draw margin.
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user