Skip to content

Commit

Permalink
Pass on arguments again
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlupper committed Jun 6, 2024
1 parent 0cf1973 commit e1b32b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fpylll/algorithms/babai.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def babai(B, t, *args, **kwargs):
# precise norm
A[-1, -1] = isqrt(sum(x**2 for x in A[-2])) + 1

LLL.reduction(A) # now call LLL to run Babai
LLL.reduction(A, *args, **kwargs) # now call LLL to run Babai

v = [0] * len(t)
if A[-1, -1] > 0:
Expand Down

0 comments on commit e1b32b8

Please sign in to comment.