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 } }