From c1f13de904e639883c6f2e0755cb116ed5e1fa0e Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 30 Sep 2020 20:20:41 +0200 Subject: [PATCH] Changed sampling to 50 samples --- FastRng/Double/Distributions/Normal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastRng/Double/Distributions/Normal.cs b/FastRng/Double/Distributions/Normal.cs index b825280..58fb8a9 100644 --- a/FastRng/Double/Distributions/Normal.cs +++ b/FastRng/Double/Distributions/Normal.cs @@ -24,7 +24,7 @@ namespace FastRng.Double.Distributions set { this.random = value; - this.fitter = new ShapeFitter(Normal.ShapeFunction, this.random, 100, 0.99); + this.fitter = new ShapeFitter(Normal.ShapeFunction, this.random, 50, 0.99); } }