Skip to content

Commit

Permalink
Update oper.gi
Browse files Browse the repository at this point in the history
  • Loading branch information
zljlzljlz authored and mtorpey committed Nov 27, 2024
1 parent 6de8243 commit 6bc8d45
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions gap/oper.gi
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,8 @@ function(D, roots)

end);

InstallMethod(IsOrderFilter, "for a digraph and a list of vertices", [IsDigraph, IsList],
InstallMethod(IsOrderFilter, "for a digraph and a list of vertices",
[IsDigraph, IsList],
function(D, roots)
return IsOrderIdeal(DigraphReverse(D), roots);
end);
Expand Down Expand Up @@ -2548,8 +2549,8 @@ function(G)
c := Length(unusedEdges);

# Warning for large matrix
# The warning is printed roughly when the result matrix will take up
# more than 8GB of RAM.
# The warning is printed roughly when the result matrix will
# take up more than 8GB of RAM.
if (10 ^ 11) / 2 < m * c then
Info(InfoWarning, 1, StringFormatted(
"The resulting matrix is going to be large of size {} \x {} ",
Expand Down

0 comments on commit 6bc8d45

Please sign in to comment.