Skip to content

Commit 5ae2f5f

Browse files
committed
not allowing for N = 1 which causes issues
1 parent f70fe23 commit 5ae2f5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ModFrmGL2/Tests/Shimura.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ function Test_Shimura(N)
2020
num_times := 5;
2121
max_N := 10;
2222
for i in [1..num_times] do
23-
N := Random(max_N);
23+
N := Random(2, max_N);
2424
D, S := Test_Shimura(N);
2525
end for;

0 commit comments

Comments
 (0)