Skip to content

Commit

Permalink
added semiccolon after print
Browse files Browse the repository at this point in the history
  • Loading branch information
aryamanmaithani committed Jun 5, 2024
1 parent f07184a commit f138599
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GLIdeals.m2
Original file line number Diff line number Diff line change
Expand Up @@ -342,12 +342,12 @@ numgensGLIdeal(ZZ, ZZ, Partition) := opts -> (n, m, P) -> (
return numgensILambda(n, m, P);
);
numgensGLIdeal(Matrix, List) := opts -> (X, L) -> (
if char(ring X) != 0 then print "Matrix over positive characterstic -- answer might not be correct!"
if char(ring X) != 0 then print "Matrix over positive characterstic -- answer might not be correct!";
if IsPartition(L) then return numgensILambda(X, L);
return numgensIChi(X, L, opts);
);
numgensGLIdeal(Matrix, Partition) := opts -> (X, P) -> (
if char(ring X) != 0 then print "Matrix over positive characterstic -- answer might not be correct!"
if char(ring X) != 0 then print "Matrix over positive characterstic -- answer might not be correct!";
return numgensILambda(X, P);
);

Expand Down

0 comments on commit f138599

Please sign in to comment.