From dad5ead650004a53f477ba0bb0a0b78546cd5318 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 19 Oct 2020 19:48:16 +0200 Subject: [PATCH] Removed 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 8617b2c..48254f9 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; // TODO: Replace by formula with gamma + private const double CONSTANT = 4; 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); // TODO: update threshold + this.fitter = new ShapeFitter(BetaA2B2.ShapeFunction, this.random, 50, 0.99); } }