From 3a88a8300398431e05146e586884bdcb4687dfb8 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 21 Jun 2022 18:14:58 +0100 Subject: [PATCH] this is slowing it down --- new_scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new_scripts.py b/new_scripts.py index 251bc75ce..401f3d37d 100644 --- a/new_scripts.py +++ b/new_scripts.py @@ -92,7 +92,7 @@ def automated_param_select_n(params, target_security=128): # get an estimate based on the prev. model print("n = {}".format(params.n)) n_start = old_models(target_security, log2(params.Xe.stddev), log2(params.q)) - n_start = max(n_start, 450) + # n_start = max(n_start, 450) # TODO: think about throwing an error if the required n < 450 params = params.updated(n=n_start)