1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#Example: "G5-SP-Rel-i" . . . based on: isom/G_5.com
#vars: F, rels, procId;
#options: OutputLevel, ClassBound, StandardPresentationFile
F := FreeGroup("a", "b");
rels := ["[a, b, b, b]", "[b, a, b, b, b]", "[a, b, a]", "b^5"];
procId := PqStart(F : Prime := 5, Relators := rels);
#comment: set a different print level by supplying <OutputLevel>
#add <OutputLevel> for <value> if set and ok
#PqSetOutputLevel(procId, value);;
PqSPComputePcpAndPCover(procId : ClassBound := 2);;
#comment: set a different `ClassBound' by supplying <ClassBound>
#comment: also save the presentation to a file by supplying <StandardPresentationFile>
PqSPStandardPresentation(procId, [ [[1,0,0,1],
[0,1,0,0]],
[[1,0,0,0],
[0,1,0,1]],
[[1,3,0,0],
[0,1,0,0]],
[[1,3,0,0],
[0,4,0,0]],
[[1,2,0,0],
[0,3,0,0]],
[[4,0,0,0],
[0,1,0,0]],
[[3,0,0,0],
[0,1,0,0]] ]
: # options
#add <StandardPresentationFile> for <value> if set and ok
# StandardPresentationFile := value,
#sub <ClassBound> for <10> if set
ClassBound := 10,
PcgsAutomorphisms);;
|