Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 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
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- '4.15'
- '4.14'
- '4.13'
- '4.12'

steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ PackageDoc := rec(
),

Dependencies := rec(
GAP := ">=4.12",
GAP := ">=4.13",
NeededOtherPackages := [
["AtlasRep", ">= 1.4.0"],
["FactInt", ">= 1.5.2"],
Expand Down
222 changes: 0 additions & 222 deletions contrib/frank/sl2/NatSL2q.g

This file was deleted.

9 changes: 2 additions & 7 deletions gap/projective/classicalnatural.gi
Original file line number Diff line number Diff line change
Expand Up @@ -926,13 +926,8 @@ function(ri)

# This is (P)SL2, lets set up the recognition:
Info(InfoRecog,2,"ClassicalNatural: this is PSL_2!");
if IsEvenInt(q) then
std := RECOG.RecogniseSL2NaturalEvenChar(gm,f,false);
ri!.comment := "PSL2Even";
else
std := RECOG.RecogniseSL2NaturalOddCharUsingBSGS(gm,f);
ri!.comment := "PSL2Odd";
fi;
std := RECOG.ConRecogNaturalSL2(gm,f);
ri!.comment := "PSL2";
Setslptonice(ri,SLPOfElms(std.all));
ri!.nicebas := std.bas;
ri!.nicebasi := std.basi;
Expand Down
6 changes: 1 addition & 5 deletions gap/projective/sl.gi
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,7 @@ RECOG.FindStdGens_SL := function(sld)
Info(InfoRecog,2,
"Recognising this SL2 constructively in 2 dimensions...");
sl2genss := GeneratorsWithMemory(sl2genss);
if IsEvenInt(q) then
resl2 := RECOG.RecogniseSL2NaturalEvenChar(Group(sl2genss),f,false);
else
resl2 := RECOG.RecogniseSL2NaturalOddCharUsingBSGS(Group(sl2genss),f);
fi;
resl2 := RECOG.ConRecogNaturalSL2(Group(sl2genss),f);
Comment thread
Till-Eisen marked this conversation as resolved.
Outdated
slpsl2std := SLPOfElms(resl2.all);
bas := resl2.bas * bas;
# We need the actual transvections:
Expand Down
Loading
Loading