/usr/share/gap/trans/trans.gd is in gap-trans-groups 4r8p5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | #############################################################################
##
#W trans.gd GAP transitive groups library Alexander Hulpke
##
##
#Y Copyright (C) 2001, Alexander Hulpke, Colorado State University
#Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
##
## This file contains the declarations for the transitive groups library
##
#############################################################################
##
#F TransitiveGroup(<deg>,<nr>)
##
## <#GAPDoc Label="TransitiveGroup">
## <ManSection>
## <Func Name="TransitiveGroup" Arg='deg,nr'/>
##
## <Description>
## returns the <A>nr</A>-th transitive group of degree <A>deg</A>. Both <A>deg</A> and
## <A>nr</A> must be positive integers. The transitive groups of equal degree
## are sorted with respect to their size, so for example
## <C>TransitiveGroup( <A>deg</A>, 1 )</C> is a transitive group of degree and
## size <A>deg</A>, e.g, the cyclic group of size <A>deg</A>, if <A>deg</A> is a
## prime.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareGlobalFunction("TransitiveGroup");
#############################################################################
##
#F NrTransitiveGroups(<deg>)
##
## <#GAPDoc Label="NrTransitiveGroups">
## <ManSection>
## <Func Name="NrTransitiveGroups" Arg='deg'/>
##
## <Description>
## returns the number of transitive groups of degree <A>deg</A> stored in
## the library of transitive groups.
## The function returns <K>fail</K> if <A>deg</A> is
## beyond the range of the library.
## <P/>
## <Example><![CDATA[
## gap> TransitiveGroup(10,22);
## S(5)[x]2
## gap> l:=AllTransitiveGroups(NrMovedPoints,12,Size,1440,IsSolvable,false);
## [ S(6)[x]2, M_10.2(12)=A_6.E_4(12)=[S_6[1/720]{M_10}S_6]2 ]
## gap> List(l,IsSolvable);
## [ false, false ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareGlobalFunction("NrTransitiveGroups");
DeclareGlobalVariable( "TRANSCOMBCACHE", "combinations cache" );
DeclareGlobalVariable( "TRANSARRCACHE", "arrangements cache" );
DeclareGlobalVariable( "TRANSSHAPEFREQS", "frequencies of shapes" );
#############################################################################
##
#E
|