mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
Jens True
23fc14af0a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
23 lines
658 B
PHP
23 lines
658 B
PHP
<?php
|
|
|
|
namespace DNW\Skills\Tests\FactorGraphs;
|
|
|
|
use DNW\Skills\FactorGraphs\Variable;
|
|
use DNW\Skills\Numerics\GaussianDistribution;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class VariableTest extends TestCase
|
|
{
|
|
public function test(): void
|
|
{
|
|
$gd_prior = new GaussianDistribution();
|
|
$var = new Variable('dummy', $gd_prior);
|
|
$this->assertEquals($gd_prior, $var->getValue());
|
|
$gd_new = new GaussianDistribution();
|
|
$this->assertEquals($gd_new, $var->getValue());
|
|
$var->resetToPrior();
|
|
$this->assertEquals($gd_prior, $var->getValue());
|
|
$this->assertEquals('Variable[dummy]', (string)$var);
|
|
}
|
|
}
|