commit 06bcf0cc4882dbbec6f27c2cce299def4e3748e1
parent 260d39e131c48543947c5d403449ceb61ad1bdbd
Author: NunoSempere <nuno.semperelh@protonmail.com>
Date: Tue, 11 Jun 2024 08:37:39 -0400
move number of samples down to 100k to make response instant
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/f.go b/f.go
@@ -14,7 +14,7 @@ import (
const NORMAL90CONFIDENCE = 1.6448536269514727
const GENERAL_ERR_MSG = "Valid inputs: 2 || * 2 || / 2 || 2 20 || * 2 20 || / 2 20 || clean || =: var || op var || clean || help || debug || exit"
-const N_SAMPLES = 1_000_000
+const N_SAMPLES = 100_000
// Distribution interface
// https://go.dev/tour/methods/9