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