From 53da809f37c36e22c19b037ea46bcae492686074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Test=C3=A9?= Date: Mon, 18 Sep 2023 09:43:17 +0200 Subject: [PATCH] chore(ci): reduce max dimension threshold in lattice estimator --- ci/lattice_estimator.sage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lattice_estimator.sage b/ci/lattice_estimator.sage index d449615643..8b2312e59e 100755 --- a/ci/lattice_estimator.sage +++ b/ci/lattice_estimator.sage @@ -36,7 +36,7 @@ def check_security(filename): try: # The lattice estimator is not able to manage such large dimension. # If we have the security for smaller `n` then we have security for larger ones. - if param.n >= 32768: + if param.n > 16384: param = param.updated(n = 16384) usvp_level = LWE.primal_usvp(param, red_cost_model = model)