diff --git a/ci/lattice_estimator.sage b/ci/lattice_estimator.sage index d44961564..8b2312e59 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)