From 68be4be9db5c6f2248ab3995b89f7f67c73ca6c3 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 30 Sep 2020 19:52:30 +0200 Subject: [PATCH] Formatting --- 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 d6e6dd2..3d32a6b 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(ShapeFunction, this.random, 100, 0.99); + this.fitter = new ShapeFitter(Normal.ShapeFunction, this.random, 100, 0.99); } }