Naming tweak

This commit is contained in:
Jeff Moser 2010-10-14 21:51:43 -04:00
parent 110463ad49
commit 455f2b3061
66 changed files with 24 additions and 26 deletions

@ -1,4 +1,4 @@
The core ideas used in this PHPSkills project were described in
The core ideas used in this Moserware.Skills for PHP project were described in
"TrueSkill (TM): A Bayesian Skill Rating System" available at
http://research.microsoft.com/apps/pubs/default.aspx?id=67956
@ -12,7 +12,7 @@ http://blogs.technet.com/apg/archive/2008/06/16/trueskill-in-f.aspx
This PHP code was ported from the C# Moserware.Skills project at
http://github.com/moserware/Skills
Both the PHP code in this PHPSkills project and C# in Moserware.Skills are
Both the PHP code in this project and C# in Moserware.Skills are
Copyright (c) 2010 Jeff Moser <jeff@moserware.com>
Redistribution and use in source and binary forms, with or without modification, are

@ -1,8 +1,7 @@
<?php
/**
* Basic math functions.
*
* @package PHPSkills
*
* @author Jeff Moser <jeff@moserware.com>
* @copyright 2010 Jeff Moser
*/

@ -7,7 +7,6 @@ require_once(dirname(__FILE__) . "/basicmath.php");
/**
* Computes Gaussian (bell curve) values.
*
* @package PHPSkills
* @author Jeff Moser <jeff@moserware.com>
* @copyright 2010 Jeff Moser
*/

@ -1,9 +1,9 @@
<?php
namespace Moserware\Skills\Elo;
require_once(dirname(__FILE__) . '/../../PHPSkills/Elo/EloRating.php');
require_once(dirname(__FILE__) . '/../../PHPSkills/GameInfo.php');
require_once(dirname(__FILE__) . '/../../PHPSkills/PairwiseComparison.php');
require_once(dirname(__FILE__) . '/../../Skills/Elo/EloRating.php');
require_once(dirname(__FILE__) . '/../../Skills/GameInfo.php');
require_once(dirname(__FILE__) . '/../../Skills/PairwiseComparison.php');
use Moserware\Skills\GameInfo;
use Moserware\Skills\PairwiseComparison;

@ -2,9 +2,9 @@
namespace Moserware\Skills\Elo;
require_once(dirname(__FILE__) . '/EloAssert.php');
require_once(dirname(__FILE__) . '/../../PHPSkills/PairwiseComparison.php');
require_once(dirname(__FILE__) . '/../../PHPSkills/Elo/FideEloCalculator.php');
require_once(dirname(__FILE__) . '/../../PHPSkills/Elo/FideKFactor.php');
require_once(dirname(__FILE__) . '/../../Skills/PairwiseComparison.php');
require_once(dirname(__FILE__) . '/../../Skills/Elo/FideEloCalculator.php');
require_once(dirname(__FILE__) . '/../../Skills/Elo/FideKFactor.php');
use Moserware\Skills\PairwiseComparison;
use \PHPUnit_Framework_TestCase;

@ -1,6 +1,6 @@
<?php
require_once 'PHPUnit/Framework.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/Numerics/BasicMath.php');
require_once(dirname(__FILE__) . '/../../Skills/Numerics/BasicMath.php');
class BasicMathTest extends PHPUnit_Framework_TestCase

@ -4,7 +4,7 @@ namespace Moserware\Numerics;
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/Numerics/GaussianDistribution.php');
require_once(dirname(__FILE__) . '/../../Skills/Numerics/GaussianDistribution.php');
use \PHPUnit_Framework_TestCase;

@ -2,7 +2,7 @@
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/Numerics/Matrix.php');
require_once(dirname(__FILE__) . '/../../Skills/Numerics/Matrix.php');
use \PHPUnit_Framework_TestCase;
use Moserware\Numerics\Matrix;

@ -4,7 +4,7 @@ namespace Moserware\Skills;
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../PHPSkills/RankSorter.php');
require_once(dirname(__FILE__) . '/../Skills/RankSorter.php');
use \PHPUnit_Framework_TestCase;

@ -4,7 +4,7 @@ namespace Moserware\Skills\TrueSkill;
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/TrueSkill/DrawMargin.php');
require_once(dirname(__FILE__) . '/../../Skills/TrueSkill/DrawMargin.php');
use \PHPUnit_Framework_TestCase;

@ -2,7 +2,7 @@
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/TrueSkill/FactorGraphTrueSkillCalculator.php');
require_once(dirname(__FILE__) . '/../../Skills/TrueSkill/FactorGraphTrueSkillCalculator.php');
require_once(dirname(__FILE__) . '/TrueSkillCalculatorTests.php');
use \PHPUnit_Framework_TestCase;

@ -1,10 +1,10 @@
<?php
require_once(dirname(__FILE__) . "/../../PHPSkills/GameInfo.php");
require_once(dirname(__FILE__) . "/../../PHPSkills/Player.php");
require_once(dirname(__FILE__) . "/../../PHPSkills/Rating.php");
require_once(dirname(__FILE__) . "/../../PHPSkills/Team.php");
require_once(dirname(__FILE__) . "/../../PHPSkills/Teams.php");
require_once(dirname(__FILE__) . "/../../PHPSkills/SkillCalculator.php");
require_once(dirname(__FILE__) . "/../../Skills/GameInfo.php");
require_once(dirname(__FILE__) . "/../../Skills/Player.php");
require_once(dirname(__FILE__) . "/../../Skills/Rating.php");
require_once(dirname(__FILE__) . "/../../Skills/Team.php");
require_once(dirname(__FILE__) . "/../../Skills/Teams.php");
require_once(dirname(__FILE__) . "/../../Skills/SkillCalculator.php");
use Moserware\Skills\GameInfo;
use Moserware\Skills\Player;

@ -2,7 +2,7 @@
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/TrueSkill/TwoPlayerTrueSkillCalculator.php');
require_once(dirname(__FILE__) . '/../../Skills/TrueSkill/TwoPlayerTrueSkillCalculator.php');
require_once(dirname(__FILE__) . '/TrueSkillCalculatorTests.php');
use \PHPUnit_Framework_TestCase;

@ -2,7 +2,7 @@
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once(dirname(__FILE__) . '/../../PHPSkills/TrueSkill/TwoTeamTrueSkillCalculator.php');
require_once(dirname(__FILE__) . '/../../Skills/TrueSkill/TwoTeamTrueSkillCalculator.php');
require_once(dirname(__FILE__) . '/TrueSkillCalculatorTests.php');
use \PHPUnit_Framework_TestCase;

@ -3,7 +3,7 @@
<type>org.netbeans.modules.php.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/php-project/1">
<name>phpskills</name>
<name>Skills</name>
</data>
</configuration>
</project>