Skip to content

Commit

Permalink
fix flake8 again for some reason
Browse files Browse the repository at this point in the history
  • Loading branch information
bencrts committed May 8, 2024
1 parent ba19165 commit 805471c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions estimator/reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,8 +904,13 @@ def short_vectors(self, beta, d, N=None, preprocess=True, B=None, C=5.46, sieve_

# arbitrary choice
if c > 2**1000:
c = oo
return(rho, oo, oo, sieve_dim)
# set c = oo
return (
rho,
oo,
oo,
sieve_dim,
)

return (
rho,
Expand Down

0 comments on commit 805471c

Please sign in to comment.