Skip to content

Commit

Permalink
Workaround for gap-system#4854
Browse files Browse the repository at this point in the history
This disables an attempt to use cyclic extension instead of lifting for
lattices of smallish groups. The issue is that CE returns data in a slightly
different format than required.
If yomlib is loded its a mote issue, and thus does not merit investigation.

This closes gap-system#4854
  • Loading branch information
hulpke committed Sep 5, 2022
1 parent 917d671 commit 7efaaf5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/grplatt.gi
Original file line number Diff line number Diff line change
Expand Up @@ -845,11 +845,11 @@ InstallGlobalFunction(LatticeViaRadical,function(arg)
makesubgroupclasses,cefastersize;

#group order below which cyclic extension is usually faster
if IsPackageMarkedForLoading("tomlib","")=true then
#if IsPackageMarkedForLoading("tomlib","")=true then
cefastersize:=1;
else
cefastersize:=40000;
fi;
#else
# cefastersize:=40000;
#fi;

makesubgroupclasses:=function(g,l)
local i,m,c;
Expand Down

0 comments on commit 7efaaf5

Please sign in to comment.