From 1ea48d8dd0f7da03b6201665950251610ff8d886 Mon Sep 17 00:00:00 2001 From: Jens True Date: Thu, 15 Feb 2024 10:25:28 +0000 Subject: [PATCH] Code standards --- src/Numerics/GaussianDistribution.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Numerics/GaussianDistribution.php b/src/Numerics/GaussianDistribution.php index ce7b0a1..6d1b2cf 100644 --- a/src/Numerics/GaussianDistribution.php +++ b/src/Numerics/GaussianDistribution.php @@ -14,11 +14,11 @@ class GaussianDistribution implements \Stringable { //sqrt(2*pi) //from https://www.wolframalpha.com/input?i=sqrt%282*pi%29 - const M_SQRT_2_PI = 2.5066282746310005024157652848110452530069867406099383166299235763; + private const M_SQRT_2_PI = 2.5066282746310005024157652848110452530069867406099383166299235763; //log(sqrt(2*pi)) //From https://www.wolframalpha.com/input?i=log%28sqrt%282*pi%29%29 - const M_LOG_SQRT_2_PI = 0.9189385332046727417803297364056176398613974736377834128171515404; + private const M_LOG_SQRT_2_PI = 0.9189385332046727417803297364056176398613974736377834128171515404; // precision and precisionMean are used because they make multiplying and dividing simpler // (the the accompanying math paper for more details) private float $precision;