From 329057198d3272ee29a08a81246fe32d06c05914 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 30 Sep 2020 21:34:51 +0200 Subject: [PATCH] Added todos --- FastRng/Double/Distributions/BetaA2B2.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FastRng/Double/Distributions/BetaA2B2.cs b/FastRng/Double/Distributions/BetaA2B2.cs index 88b0327..8617b2c 100644 --- a/FastRng/Double/Distributions/BetaA2B2.cs +++ b/FastRng/Double/Distributions/BetaA2B2.cs @@ -8,7 +8,7 @@ namespace FastRng.Double.Distributions { private const double ALPHA = 2; private const double BETA = 2; - private const double CONSTANT = 4; + private const double CONSTANT = 4; // TODO: Replace by formula with gamma private ShapeFitter fitter; private IRandom random; @@ -23,7 +23,7 @@ namespace FastRng.Double.Distributions set { this.random = value; - this.fitter = new ShapeFitter(BetaA2B2.ShapeFunction, this.random, 50, 0.99); + this.fitter = new ShapeFitter(BetaA2B2.ShapeFunction, this.random, 50, 0.99); // TODO: update threshold } }