move number of samples down to 100k to make response instant

This commit is contained in:
NunoSempere 2024-06-11 08:37:39 -04:00
parent 260d39e131
commit 06bcf0cc48

2
f.go
View File

@ -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