Changed sampling to 50 samples

This commit is contained in:
Thorsten Sommer 2020-09-30 20:20:41 +02:00
parent 3c7713ae00
commit c1f13de904

View File

@ -24,7 +24,7 @@ namespace FastRng.Double.Distributions
set set
{ {
this.random = value; this.random = value;
this.fitter = new ShapeFitter(Normal.ShapeFunction, this.random, 100, 0.99); this.fitter = new ShapeFitter(Normal.ShapeFunction, this.random, 50, 0.99);
} }
} }