/usr/share/gap/grp/glzmodmz.gd is in gap-libs 4r7p9-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 | #############################################################################
##
#W glzmodmz.gd GAP library Stefan Kohl
#W Alexander Hulpke
##
##
#Y Copyright (C) 2011 The GAP Group
##
## This file contains declarations for constructing clasical groups over
## residue class rings.
#############################################################################
##
#F SizeOfGLdZmodmZ( d, m ) . . . . . . . . . . Size of the group GL(d,Z/mZ)
##
## Computes the order of the group `GL( <d>, Integers mod <m> )' for
## positive integers <d> and <m> > 1.
##
DeclareGlobalFunction( "SizeOfGLdZmodmZ" );
#############################################################################
##
#F ConstructFormPreservingGroup(oper [,sign] d, R )
##
## constructs the classical group sefined by <A>oper</A> over a prime field
## over the residue class ring <A>R</A>, which must be modulo an odd prime
## power.
DeclareGlobalFunction("ConstructFormPreservingGroup");
#############################################################################
##
#E glzmodmz.gd . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
|