Updated todo

This commit is contained in:
Thorsten Sommer 2020-09-29 20:29:54 +02:00
parent 9b35ce01aa
commit f69330d79e

View File

@ -28,7 +28,7 @@ namespace FastRng.Double.Distributions
if (this.Random == null) if (this.Random == null)
return double.NaN; 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); return Math.Exp(normal);
} }
} }