/usr/share/gap/lib/tuples.gd is in gap-libs 4r8p8-3.
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | #############################################################################
##
#W tuples.gd GAP library Steve Linton
##
##
#Y Copyright (C) 1997, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
#Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
#Y Copyright (C) 2002 The GAP Group
##
## This file declares the operations for direct product elements.
##
## Direct product elements are immutable finite type-safe lists.
##
#############################################################################
##
#V InfoDirectProductElements . . . . . . . . . . . . . . . . . . Info Class
##
DeclareInfoClass( "InfoDirectProductElements" );
#############################################################################
##
#C IsDirectProductElement( <obj> ) . . category of direct product elements
##
## <#GAPDoc Label="IsDirectProductElement">
## <ManSection>
## <Filt Name="IsDirectProductElement" Arg='obj' Type='Category'/>
##
## <Description>
## <Ref Func="IsDirectProductElement"/> is a subcategory of the meet of
## <Ref Func="IsDenseList"/>,
## <Ref Func="IsMultiplicativeElementWithInverse"/>,
## <Ref Func="IsAdditiveElementWithInverse"/>,
## and <Ref Func="IsCopyable"/>,
## where the arithmetic operations (addition, zero, additive inverse,
## multiplication, powering, one, inverse) are defined componentwise.
## <P/>
## Note that each of these operations will cause an error message if
## its result for at least one component cannot be formed.
## <P/>
## For an object in the filter <Ref Func="IsDirectProductElement"/>,
## <Ref Func="ShallowCopy"/> returns a mutable plain list with the same
## entries.
## The sum and the product of a direct product element and a list in
## <Ref Func="IsListDefault"/> is the list of sums and products,
## respectively.
## The sum and the product of a direct product element and a non-list
## is the direct product element of componentwise sums and products,
## respectively.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareCategory( "IsDirectProductElement",
IsDenseList
and IsCopyable
and IsMultiplicativeElementWithInverse
and IsAdditiveElementWithInverse );
#############################################################################
##
#C IsDirectProductElementFamily( <family> ) . . . category of direct product
#C element families
##
## <ManSection>
## <Filt Name="IsDirectProductElementFamily" Arg='obj' Type='Category'/>
##
## <Description>
## </Description>
## </ManSection>
##
DeclareCategoryFamily( "IsDirectProductElement" );
#############################################################################
##
#C IsDirectProductElementCollection( <coll> ) . category of direct product
#C element collections
##
## <ManSection>
## <Filt Name="IsDirectProductElementCollection" Arg='obj' Type='Category'/>
##
## <Description>
## </Description>
## </ManSection>
##
DeclareCategoryCollections( "IsDirectProductElement" );
#############################################################################
##
#O DirectProductElementsFamily( <famlist> ) . . . . family of direct product
#O elements
##
## <ManSection>
## <Oper Name="DirectProductElementsFamily" Arg='famlist'/>
##
## <Description>
## </Description>
## </ManSection>
##
DeclareOperation( "DirectProductElementsFamily", [ IsCollection ] );
#############################################################################
##
#A ComponentsOfDirectProductElementsFamily( <fam> ) . . component families
##
## <ManSection>
## <Attr Name="ComponentsOfDirectProductElementsFamily" Arg='fam'/>
##
## <Description>
## </Description>
## </ManSection>
##
DeclareAttribute( "ComponentsOfDirectProductElementsFamily",
IsDirectProductElementFamily );
#############################################################################
##
#R IsDefaultDirectProductElementRep( <obj> ) . . . . . representation as a
#R component object
##
DeclareRepresentation( "IsDefaultDirectProductElementRep",
IsPositionalObjectRep and IsDirectProductElement, [] );
#############################################################################
##
#V EmptyDirectProductElementsFamily
##
BindGlobal( "EmptyDirectProductElementsFamily",
NewFamily( "DirectProductElementsFamily([])", IsDirectProductElement,
IsDirectProductElement ) );
#############################################################################
##
#V DIRECT_PRODUCT_ELEMENT_FAMILIES . . . all direct product element families
#V so far created
##
## <ManSection>
## <Var Name="DIRECT_PRODUCT_ELEMENT_FAMILIES"/>
##
## <Description>
## <Ref Var="DIRECT_PRODUCT_ELEMENT_FAMILIES"/> is a list whose <M>i</M>-th
## component is a weak pointer object containing all currently known
## families of <M>i+1</M> component direct product elements.
## </Description>
## </ManSection>
##
DeclareGlobalVariable( "DIRECT_PRODUCT_ELEMENT_FAMILIES",
"list, at position i the list of known i+1 component \
direct product elements families" );
#############################################################################
##
#O DirectProductElement( [<fam>, ]<objlist> )
#O DirectProductElementNC( <fam>, <objlist> ) . . . . omits check on object
#O families and objlist length
##
## <ManSection>
## <Oper Name="DirectProductElement" Arg='[fam, ]objlist'/>
## <Oper Name="DirectProductElementNC" Arg='fam, objlist'/>
##
## <Description>
## </Description>
## </ManSection>
##
DeclareOperation( "DirectProductElement", [ IsList ]);
DeclareOperation( "DirectProductElementNC",
[ IsDirectProductElementFamily, IsList ]);
#############################################################################
##
#E
|