Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/ghomperm.gi
Original file line number Diff line number Diff line change
Expand Up @@ -794,12 +794,12 @@ BindGlobal("DoSCMPermGpHom",function(arg)
if maxstor>65535 then
maxstor:=maxstor*2; # perms need twice as much memory
fi;
maxstor:=Int(40*1024^2/maxstor); # allocate at most 40MB to the perms
maxstor:=Int(80*1024^2/maxstor); # allocate at most 80MB to the perms
# but don't be crazy
maxstor:=Minimum(maxstor,
Size(Source(hom))/10,
500*LogInt(Size(Source(hom)),2),
25000);
1500*LogInt(Size(Source(hom)),2),
400000);

# fill transversal with elements that are short words
# This is similar to Minkwitz' approach and produces much shorter
Expand Down