From f69330d79e824ddc3a173d1e071c5dc7b500374d Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Tue, 29 Sep 2020 20:29:54 +0200 Subject: [PATCH] Updated todo --- FastRng/Double/Distributions/LogNormal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FastRng/Double/Distributions/LogNormal.cs b/FastRng/Double/Distributions/LogNormal.cs index a42e9dc..18195f9 100644 --- a/FastRng/Double/Distributions/LogNormal.cs +++ b/FastRng/Double/Distributions/LogNormal.cs @@ -28,7 +28,7 @@ namespace FastRng.Double.Distributions if (this.Random == null) return double.NaN; - var normal = await this.Random.NextNumber(new Normal(), token); // TODO: Check all distributions. Used distributions must be static readonly! + var normal = await this.Random.NextNumber(new Normal(), token); // TODO: Check all distributions. Used distributions must be static readonly! Probably, after refactoring, no distribution should depend on any other! return Math.Exp(normal); } }