-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add constructive recognition for SL_n #330
base: master
Are you sure you want to change the base?
Add constructive recognition for SL_n #330
Conversation
Make sure that the correct path of `regen_doc.g` is used when PackageManager builds the documentation.
preliminary fix in `makedoc.g`
@@ -268,6 +268,7 @@ Dependencies := rec( | |||
GAP := ">=4.11", | |||
NeededOtherPackages := [ | |||
["AtlasRep", ">= 1.4.0"], | |||
["Alnuth", ">= 3.2.1"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
@@ -18,7 +18,7 @@ SetPackageInfo( rec( | |||
|
|||
PackageName := "recog", | |||
Subtitle := "A package for constructive recognition of permutation and matrix groups", | |||
Version := "1.4.2", | |||
Version := "1.4.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version := "1.4.3", | |
Version := "1.4.3-DEV", |
@@ -1294,12 +1138,12 @@ RECOG.RecogniseSL2NaturalEvenChar := function(g,f,torig) | |||
xm := o[j]; | |||
j := j + 1; | |||
c := Comm(tm,xm); | |||
until not IsOne(c^2); | |||
until not(IsOne(c^2)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
until not(IsOne(c^2)); | |
until not IsOne(c^2); |
and similar in other places where these parentheses are added back.
@@ -3246,10 +2330,10 @@ function(ri, g) | |||
Info(InfoRecog,2,"ClassicalNatural: this is PSL_2!"); | |||
if IsEvenInt(q) then | |||
std := RECOG.RecogniseSL2NaturalEvenChar(gm,f,false); | |||
ri!.comment := "PSL2Even"; | |||
ri!.comment := "_PSL2Even"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason this was changed? It causes CI tests to fail
ri!.comment := "_PSL2Even"; | |
ri!.comment := "PSL2Even"; |
else | ||
std := RECOG.RecogniseSL2NaturalOddCharUsingBSGS(gm,f); | ||
ri!.comment := "PSL2Odd"; | ||
ri!.comment := "_PSL2Odd"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ri!.comment := "_PSL2Odd"; | |
ri!.comment := "PSL2Odd"; |
@@ -3270,12 +2354,12 @@ function(ri, g) | |||
# FIXME: Note d=3 currently has a problem in the SL2-finder. | |||
Info(InfoRecog,2,"Classical natural: SL(",d,",",q,"): small ", | |||
"case, handing over to Schreier-Sims."); | |||
ri!.comment := Concatenation("SL(",String(d),",",String(q),")", | |||
ri!.comment := Concatenation("_SL(",String(d),",",String(q),")", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ri!.comment := Concatenation("_SL(",String(d),",",String(q),")", | |
ri!.comment := Concatenation("SL(",String(d),",",String(q),")", |
@@ -3285,7 +2369,7 @@ function(ri, g) | |||
x->std.basi*x*std.bas)); | |||
ri!.fakegens := RECOG.InitSLfake(f,d); | |||
ri!.fakegens.count := 0; | |||
ri!.comment := "PSLd"; | |||
ri!.comment := "_PSLd"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ri!.comment := "_PSLd"; | |
ri!.comment := "PSLd"; |
Sometimes this still runs into an error:
|
If one wants to build the documentation with version 1.4.3 of PackageManager then also the calls of `OutputTextFile` require paths relative to `DirectoryCurrent()`.
The |
No description provided.