Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
eb687da
Include SL Code.
Jun 13, 2024
753f1ca
Add fix for manual crash.
Jun 18, 2024
0c0b96a
Implement Max remark
Jun 18, 2024
5ba5c6b
New version and add dependencies
Jun 19, 2024
a442dc2
preliminary fix in `makedoc.g`
ThomasBreuer Jun 19, 2024
a9dd42d
fix more places where the current directory is needed
ThomasBreuer Jun 20, 2024
68fb0b1
Remove unused misc/up.gi
fingolfin Mar 18, 2025
1255ae7
Factor out some duplicate code
fingolfin Mar 18, 2025
50d6e57
Fix error in Computesl2Subspace
fingolfin Mar 18, 2025
7f02844
Get rid of GoalDim
fingolfin May 15, 2025
7355a96
GoingUp: remove special case for initial stingray
fingolfin May 15, 2025
3090b57
Pass field not field size to ConvertToMatrixRep
fingolfin May 15, 2025
90c6915
When compute a^b don't handle b=1 specially
fingolfin May 15, 2025
9f3927f
Some notes from debugging last year
fingolfin Oct 21, 2025
7ab16e1
Mark unused code
fingolfin Jan 20, 2026
29c40db
Update PackageInfo.g
fingolfin Jan 20, 2026
218fb07
Replace FieldOfPolynomial
fingolfin Feb 3, 2026
77975de
Tweak RECOG.CheckPolynomialForSelfConjugate
fingolfin Feb 3, 2026
7ee7e3c
Clarify info message
fingolfin Feb 10, 2026
644d085
Add Frank Lübeck SL2 recognition algorithm
Feb 17, 2026
d36b144
Update BaseCase with latest changes
Feb 17, 2026
f29135a
Improve readability and fix minor output bug
Feb 17, 2026
3077524
Fall back to old algorithm for q=2,3,5
Feb 17, 2026
b47266c
Add TODOs and minor cleanup
Feb 17, 2026
24a4a6f
main.gi: Use ConRecogNaturalSL2 instead of RecogniseSL2NaturalEvenChar
Feb 17, 2026
9c39296
Apply suggestion from @SoongNoonien
Till-Eisen Mar 3, 2026
2c1cdee
achieve.gi: Replace RecogniseSL2NaturalEvenChar with ConRecogNaturalSL2
Mar 3, 2026
14bf897
Apply suggestion from @fingolfin
Till-Eisen Mar 3, 2026
b547501
Improve test: generate comparison matrices directly instead of callin…
Mar 3, 2026
7c938f4
Apply bugfix from PR #394 and remove retry loop in ConRecogNaturalSL2
Mar 17, 2026
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
3 changes: 3 additions & 0 deletions gap/base/kernel.gi
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ BindGlobal( "GenerateRandomKernelElementsAndOptionallyVerifyThem",
verificationSuccess := true;
# We generate a random element of the kernel as the quotient of a random
# element and the preimage of its image under the homomorphism.
Info(InfoRecog,3, "GenerateRandomKernelElementsAndOptionallyVerifyThem, n = ", n);

for i in [1 .. n] do
Info(InfoRecog,3, "GenerateRandomKernelElementsAndOptionallyVerifyThem: ", i, " / ", n);
# Finding kernel generators and immediate verification must use
# different random elements! This is ensured by using the same stamp
# in both situations.
Expand Down
Loading