mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-11 17:14:13 +00:00
Initial version of Moserware.Skills TrueSkill calculator to go along with my Computing Your Skill blog post
This commit is contained in:
68
UnitTests/Numerics/GaussianDistributionTests.cs
Normal file
68
UnitTests/Numerics/GaussianDistributionTests.cs
Normal file
@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using Moserware.Numerics;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace UnitTests.Numerics
|
||||
{
|
||||
[TestFixture]
|
||||
public class GaussianDistributionTests
|
||||
{
|
||||
private const double ErrorTolerance = 0.000001;
|
||||
|
||||
[Test]
|
||||
public void MultiplicationTests()
|
||||
{
|
||||
// I verified this against the formula at http://www.tina-vision.net/tina-knoppix/tina-memo/2003-003.pdf
|
||||
var standardNormal = new GaussianDistribution(0, 1);
|
||||
var shiftedGaussian = new GaussianDistribution(2, 3);
|
||||
|
||||
var product = standardNormal * shiftedGaussian;
|
||||
|
||||
Assert.AreEqual(0.2, product.Mean, ErrorTolerance);
|
||||
Assert.AreEqual(3.0 / Math.Sqrt(10), product.StandardDeviation, ErrorTolerance);
|
||||
|
||||
var m4s5 = new GaussianDistribution(4, 5);
|
||||
var m6s7 = new GaussianDistribution(6, 7);
|
||||
|
||||
var product2 = m4s5 * m6s7;
|
||||
Func<double, double> square = x => x*x;
|
||||
|
||||
var expectedMean = (4 * square(7) + 6 * square(5)) / (square(5) + square(7));
|
||||
Assert.AreEqual(expectedMean, product2.Mean, ErrorTolerance);
|
||||
|
||||
var expectedSigma = Math.Sqrt(((square(5) * square(7)) / (square(5) + square(7))));
|
||||
Assert.AreEqual(expectedSigma, product2.StandardDeviation, ErrorTolerance);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void DivisionTests()
|
||||
{
|
||||
// Since the multiplication was worked out by hand, we use the same numbers but work backwards
|
||||
var product = new GaussianDistribution(0.2, 3.0 / Math.Sqrt(10));
|
||||
var standardNormal = new GaussianDistribution(0, 1);
|
||||
|
||||
var productDividedByStandardNormal = product / standardNormal;
|
||||
Assert.AreEqual(2.0, productDividedByStandardNormal.Mean, ErrorTolerance);
|
||||
Assert.AreEqual(3.0, productDividedByStandardNormal.StandardDeviation, ErrorTolerance);
|
||||
|
||||
Func<double, double> square = x => x * x;
|
||||
var product2 = new GaussianDistribution((4 * square(7) + 6 * square(5)) / (square(5) + square(7)), Math.Sqrt(((square(5) * square(7)) / (square(5) + square(7)))));
|
||||
var m4s5 = new GaussianDistribution(4,5);
|
||||
var product2DividedByM4S5 = product2 / m4s5;
|
||||
Assert.AreEqual(6.0, product2DividedByM4S5.Mean, ErrorTolerance);
|
||||
Assert.AreEqual(7.0, product2DividedByM4S5.StandardDeviation, ErrorTolerance);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void LogProductNormalizationTests()
|
||||
{
|
||||
var m4s5 = new GaussianDistribution(4, 5);
|
||||
var m6s7 = new GaussianDistribution(6, 7);
|
||||
|
||||
var product2 = m4s5 * m6s7;
|
||||
var normConstant = 1.0 / (Math.Sqrt(2 * Math.PI) * product2.StandardDeviation);
|
||||
var lpn = GaussianDistribution.LogProductNormalization(m4s5, m6s7);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
186
UnitTests/Numerics/MatrixTests.cs
Normal file
186
UnitTests/Numerics/MatrixTests.cs
Normal file
@ -0,0 +1,186 @@
|
||||
using Moserware.Numerics;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace UnitTests.Numerics
|
||||
{
|
||||
[TestFixture]
|
||||
public class MatrixTests
|
||||
{
|
||||
[Test]
|
||||
public void TwoByTwoDeterminantTests()
|
||||
{
|
||||
var a = new SquareMatrix(1, 2,
|
||||
3, 4);
|
||||
Assert.AreEqual(-2, a.Determinant);
|
||||
|
||||
var b = new SquareMatrix(3, 4,
|
||||
5, 6);
|
||||
Assert.AreEqual(-2, b.Determinant);
|
||||
|
||||
var c = new SquareMatrix(1, 1,
|
||||
1, 1);
|
||||
Assert.AreEqual(0, c.Determinant);
|
||||
|
||||
var d = new SquareMatrix(12, 15,
|
||||
17, 21);
|
||||
Assert.AreEqual(12 * 21 - 15 * 17, d.Determinant);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ThreeByThreeDeterminantTests()
|
||||
{
|
||||
var a = new SquareMatrix(1, 2, 3,
|
||||
4, 5, 6,
|
||||
7, 8, 9);
|
||||
Assert.AreEqual(0, a.Determinant);
|
||||
|
||||
var π = new SquareMatrix(3, 1, 4,
|
||||
1, 5, 9,
|
||||
2, 6, 5);
|
||||
|
||||
// Verified against http://www.wolframalpha.com/input/?i=determinant+%7B%7B3%2C1%2C4%7D%2C%7B1%2C5%2C9%7D%2C%7B2%2C6%2C5%7D%7D
|
||||
Assert.AreEqual(-90, π.Determinant);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void FourByFourDeterminantTests()
|
||||
{
|
||||
var a = new SquareMatrix( 1, 2, 3, 4,
|
||||
5, 6, 7, 8,
|
||||
9, 10, 11, 12,
|
||||
13, 14, 15, 16);
|
||||
|
||||
Assert.AreEqual(0, a.Determinant);
|
||||
|
||||
var π = new SquareMatrix(3, 1, 4, 1,
|
||||
5, 9, 2, 6,
|
||||
5, 3, 5, 8,
|
||||
9, 7, 9, 3);
|
||||
|
||||
// Verified against http://www.wolframalpha.com/input/?i=determinant+%7B+%7B3%2C1%2C4%2C1%7D%2C+%7B5%2C9%2C2%2C6%7D%2C+%7B5%2C3%2C5%2C8%7D%2C+%7B9%2C7%2C9%2C3%7D%7D
|
||||
Assert.AreEqual(98, π.Determinant);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void EightByEightDeterminantTests()
|
||||
{
|
||||
var a = new SquareMatrix( 1, 2, 3, 4, 5, 6, 7, 8,
|
||||
9, 10, 11, 12, 13, 14, 15, 16,
|
||||
17, 18, 19, 20, 21, 22, 23, 24,
|
||||
25, 26, 27, 28, 29, 30, 31, 32,
|
||||
33, 34, 35, 36, 37, 38, 39, 40,
|
||||
41, 42, 32, 44, 45, 46, 47, 48,
|
||||
49, 50, 51, 52, 53, 54, 55, 56,
|
||||
57, 58, 59, 60, 61, 62, 63, 64);
|
||||
|
||||
Assert.AreEqual(0, a.Determinant);
|
||||
|
||||
var π = new SquareMatrix(3, 1, 4, 1, 5, 9, 2, 6,
|
||||
5, 3, 5, 8, 9, 7, 9, 3,
|
||||
2, 3, 8, 4, 6, 2, 6, 4,
|
||||
3, 3, 8, 3, 2, 7, 9, 5,
|
||||
0, 2, 8, 8, 4, 1, 9, 7,
|
||||
1, 6, 9, 3, 9, 9, 3, 7,
|
||||
5, 1, 0, 5, 8, 2, 0, 9,
|
||||
7, 4, 9, 4, 4, 5, 9, 2);
|
||||
|
||||
// Verified against http://www.wolframalpha.com/input/?i=det+%7B%7B3%2C1%2C4%2C1%2C5%2C9%2C2%2C6%7D%2C%7B5%2C3%2C5%2C8%2C9%2C7%2C9%2C3%7D%2C%7B2%2C3%2C8%2C4%2C6%2C2%2C6%2C4%7D%2C%7B3%2C3%2C8%2C3%2C2%2C7%2C9%2C5%7D%2C%7B0%2C2%2C8%2C8%2C4%2C1%2C9%2C7%7D%2C%7B1%2C6%2C9%2C3%2C9%2C9%2C3%2C7%7D%2C%7B5%2C1%2C0%2C5%2C8%2C2%2C0%2C9%7D%2C%7B7%2C4%2C9%2C4%2C4%2C5%2C9%2C2%7D%7D
|
||||
Assert.AreEqual(1378143, π.Determinant);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void EqualsTest()
|
||||
{
|
||||
var a = new SquareMatrix(1, 2,
|
||||
3, 4);
|
||||
|
||||
var b = new SquareMatrix(1, 2,
|
||||
3, 4);
|
||||
|
||||
Assert.IsTrue(a == b);
|
||||
Assert.AreEqual(a, b);
|
||||
|
||||
var c = new Matrix(2, 3,
|
||||
1, 2, 3,
|
||||
4, 5, 6);
|
||||
|
||||
var d = new Matrix(2, 3,
|
||||
1, 2, 3,
|
||||
4, 5, 6);
|
||||
|
||||
Assert.IsTrue(c == d);
|
||||
Assert.AreEqual(c, d);
|
||||
|
||||
var e = new Matrix(3, 2,
|
||||
1, 4,
|
||||
2, 5,
|
||||
3, 6);
|
||||
|
||||
var f = e.Transpose;
|
||||
Assert.IsTrue(d == f);
|
||||
Assert.AreEqual(d, f);
|
||||
Assert.AreEqual(d.GetHashCode(), f.GetHashCode());
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void AdjugateTests()
|
||||
{
|
||||
// From Wikipedia: http://en.wikipedia.org/wiki/Adjugate_matrix
|
||||
|
||||
var a = new SquareMatrix(1, 2,
|
||||
3, 4);
|
||||
|
||||
var b = new SquareMatrix( 4, -2,
|
||||
-3, 1);
|
||||
|
||||
Assert.AreEqual(b, a.Adjugate);
|
||||
|
||||
|
||||
var c = new SquareMatrix(-3, 2, -5,
|
||||
-1, 0, -2,
|
||||
3, -4, 1);
|
||||
|
||||
var d = new SquareMatrix(-8, 18, -4,
|
||||
-5, 12, -1,
|
||||
4, -6, 2);
|
||||
|
||||
Assert.AreEqual(d, c.Adjugate);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void InverseTests()
|
||||
{
|
||||
// see http://www.mathwords.com/i/inverse_of_a_matrix.htm
|
||||
var a = new SquareMatrix(4, 3,
|
||||
3, 2);
|
||||
|
||||
var b = new SquareMatrix(-2, 3,
|
||||
3, -4);
|
||||
|
||||
var aInverse = a.Inverse;
|
||||
Assert.AreEqual(b, aInverse);
|
||||
|
||||
var identity2x2 = new IdentityMatrix(2);
|
||||
|
||||
var aaInverse = a * aInverse;
|
||||
Assert.IsTrue(identity2x2 == aaInverse);
|
||||
|
||||
var c = new SquareMatrix(1, 2, 3,
|
||||
0, 4, 5,
|
||||
1, 0, 6);
|
||||
|
||||
var cInverse = c.Inverse;
|
||||
var d = (1.0 / 22) * new SquareMatrix(24, -12, -2,
|
||||
5, 3, -5,
|
||||
-4, 2, 4);
|
||||
|
||||
|
||||
Assert.IsTrue(d == cInverse);
|
||||
var identity3x3 = new IdentityMatrix(3);
|
||||
|
||||
var ccInverse = c * cInverse;
|
||||
Assert.IsTrue(identity3x3 == ccInverse);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user