trueskill/tests/FactorGraphs/VariableTest.php

25 lines
631 B
PHP
Raw Normal View History

<?php
2024-02-02 14:53:38 +00:00
declare(strict_types=1);
namespace DNW\Skills\Tests\FactorGraphs;
use DNW\Skills\FactorGraphs\Variable;
use DNW\Skills\Numerics\GaussianDistribution;
use PHPUnit\Framework\TestCase;
class VariableTest extends TestCase
{
2024-03-01 12:56:55 +00:00
public function testGetterSetter(): void
{
$gd_prior = new GaussianDistribution();
$var = new Variable($gd_prior);
$this->assertEquals($gd_prior, $var->getValue());
2024-02-02 14:53:38 +00:00
$gd_new = new GaussianDistribution();
$this->assertEquals($gd_new, $var->getValue());
$var->resetToPrior();
$this->assertEquals($gd_prior, $var->getValue());
}
}