Skip to content

Commit

Permalink
fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
assaferan committed Jun 22, 2023
1 parent 2ddb37d commit a036817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magma_functions.m
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function alpha(n)
// Theorem 4.
// (Also appears in Skoruppa-Zagier, but this way of stating the formula was easier to work with).
function TraceFormulaGamma0AL(n, N, k)
if (n eq 0) return 0; // for compatibility with q-expansions
if (n eq 0) then return 0; end if; // for compatibility with q-expansions
S1 := 0;
// max_abst := Floor(SquareRoot(4*N*n));
max_abst := Floor(SquareRoot(4*N*n)) div N;
Expand Down

0 comments on commit a036817

Please sign in to comment.