From a9e89070b80941f36012be384f8907b990d9bf5c Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 30 Sep 2020 20:16:30 +0200 Subject: [PATCH] Removed debug code --- FastRngTests/Double/Distributions/Normal.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/FastRngTests/Double/Distributions/Normal.cs b/FastRngTests/Double/Distributions/Normal.cs index c571ab5..1a8ce9f 100644 --- a/FastRngTests/Double/Distributions/Normal.cs +++ b/FastRngTests/Double/Distributions/Normal.cs @@ -22,11 +22,9 @@ namespace FastRngTests.Double.Distributions var stats = new RunningStatistics(); var rng = new MultiThreadedRng(); - var sample = new double[100_000]; for (var n = 0; n < 100_000; n++) { var nextNumber = await rng.NextNumber(dist); - sample[n] = nextNumber; stats.Push(nextNumber); }