Skip to content

Commit

Permalink
chore(ci): reduce max dimension threshold in lattice estimator
Browse files Browse the repository at this point in the history
  • Loading branch information
soonum committed Sep 20, 2023
1 parent 723910c commit 53da809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/lattice_estimator.sage
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 53da809

Please sign in to comment.