diff --git a/FastRng/Double/ShapeFitter.cs b/FastRng/Double/ShapeFitter.cs index e786ad1..43e9a8d 100644 --- a/FastRng/Double/ShapeFitter.cs +++ b/FastRng/Double/ShapeFitter.cs @@ -13,7 +13,7 @@ namespace FastRng.Double private readonly ushort sampleSize; private readonly double threshold; - public ShapeFitter(Func shapeFunction, IRandom rng, ushort sampleSize = 100, double threshold = 0.99) + public ShapeFitter(Func shapeFunction, IRandom rng, ushort sampleSize = 50, double threshold = 0.99) { this.rng = rng; this.threshold = threshold;