Skip to content

Commit 14349e6

Browse files
authored
Add PrimitiveGroupsAvailable to the manual (#64)
1 parent 921c3d2 commit 14349e6

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGES to the 'primgrp' GAP package
22

3+
## 4.0.1 (YYYY-MM-DD)
4+
5+
- Add `PrimitiveGroupsAvailable` to the manual (it has been around
6+
for a long time but we forget to link it up there)
7+
38
## 4.0.0 (2024-12-06)
49

510
- Add support the primitive groups of degree 4096 to 8191; these

doc/prim.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<#Include Label="[1]{primitiv}">
88
<P/>
99
<#Include Label="[2]{primitiv}">
10+
<#Include Label="PrimitiveGroupsAvailable">
1011
<#Include Label="PrimitiveGroup">
1112
<#Include Label="NrPrimitiveGroups">
1213
<#Include Label="AllPrimitiveGroups">

lib/primitiv.gd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ DeclareGlobalFunction( "PrimitiveGroup" );
106106
##
107107
#F PrimitiveGroupsAvailable(<deg>)
108108
##
109+
## <#GAPDoc Label="PrimitiveGroupsAvailable">
109110
## <ManSection>
110111
## <Func Name="PrimitiveGroupsAvailable" Arg='deg'/>
111112
##
@@ -115,6 +116,7 @@ DeclareGlobalFunction( "PrimitiveGroup" );
115116
## available.
116117
## </Description>
117118
## </ManSection>
119+
## <#/GAPDoc>
118120
##
119121
if IsBoundGlobal("PrimitiveGroupsAvailable") then
120122
# redefine the dummy function from the library

tst/manualexamples/primgrp01.tst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
gap> START_TEST("primgrp01.tst");
1212

13-
# doc/../lib/primitiv.gd:138-149
13+
# doc/../lib/primitiv.gd:140-151
1414
gap> NrPrimitiveGroups(25);
1515
28
1616
gap> PrimitiveGroup(25,19);
@@ -22,7 +22,7 @@ AGL(2, 5)
2222
gap> PrimitiveGroup(25,23);
2323
(A(5) x A(5)):2
2424
25-
# doc/prim.xml:34-42
25+
# doc/prim.xml:35-43
2626
gap> COHORTS_PRIMITIVE_GROUPS[49];
2727
[ [ rec( parameter := 7, series := "Z", width := 2 ),
2828
[ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
@@ -31,11 +31,11 @@ gap> COHORTS_PRIMITIVE_GROUPS[49];
3131
[ rec( parameter := 7, series := "A", width := 2 ), [ 35, 36, 37, 38 ] ],
3232
[ rec( parameter := 49, series := "A", width := 1 ), [ 39, 40 ] ] ]
3333
34-
# doc/../lib/primitiv.gd:315-318
34+
# doc/../lib/primitiv.gd:317-320
3535
gap> PrimitiveIdentification(Group((1,2),(1,2,3)));
3636
2
3737
38-
# doc/../lib/primitiv.gd:249-254
38+
# doc/../lib/primitiv.gd:251-256
3939
gap> g:=PrimitiveGroup(25,2);
4040
5^2:S(3)
4141
gap> SimsNo(g);

0 commit comments

Comments
 (0)