From bdeb9c8c8f1162aabc47de68e1031c0135df23e8 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 30 Sep 2020 21:39:54 +0200 Subject: [PATCH] Updated parameters --- FastRngTests/Double/Distributions/Normal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastRngTests/Double/Distributions/Normal.cs b/FastRngTests/Double/Distributions/Normal.cs index d00e2ce..36dc391 100644 --- a/FastRngTests/Double/Distributions/Normal.cs +++ b/FastRngTests/Double/Distributions/Normal.cs @@ -16,7 +16,7 @@ namespace FastRngTests.Double.Distributions public async Task TestNormalDistribution01() { const double MEAN = 0.5; - const double STANDARD_DEVIATION = 0.4; + const double STANDARD_DEVIATION = 0.2; var dist = new FastRng.Double.Distributions.Normal(); var stats = new RunningStatistics();