Bit foies for static code analysis.

This commit is contained in:
2026-03-09 11:44:13 +00:00
parent 58aee11808
commit 0b75519947
8 changed files with 305 additions and 29 deletions

View File

@@ -8,11 +8,11 @@ use DNW\Skills\Numerics\GaussianDistribution;
class Variable
{
private mixed $value;
private GaussianDistribution $value;
public function __construct(private readonly GaussianDistribution $prior)
{
$this->resetToPrior();
$this->value = $prior;
}
public function getValue(): GaussianDistribution