/usr/share/gap/lib/rvecempt.gi is in gap-libs 4r6p5-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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | #############################################################################
##
#W rvecempt.gi GAP library Thomas Breuer
##
##
#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
##
#############################################################################
##
#R IsEmptyRowVectorRep( <obj> )
##
DeclareRepresentation( "IsEmptyRowVectorRep",
IsPositionalObjectRep and IsConstantTimeAccessList,
[] );
#############################################################################
##
#M EmptyRowVector( <F> ) . . . . . . . . . . . . . . . . . . . for a family
##
InstallMethod( EmptyRowVector,
"for a family",
true,
[ IsFamily ], 0,
function( F )
return Objectify( NewType( CollectionsFamily( F ),
IsRowVector
and IsEmpty
and IsEmptyRowVectorRep ),
[] );
end );
#############################################################################
##
#M ViewObj( <emptyvec> ) . . . . . . . . . . . . . . . for empty row vector
##
InstallMethod( ViewObj,
"for an empty row vector",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( emptyvec )
Print( "<empty row vector>" );
end );
#############################################################################
##
#M Length( <emptyvec> ) . . . . . . . . . . . . . . . for empty row vector
##
InstallMethod( Length,
"for an empty row vector",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
emptyvec -> 0 );
#############################################################################
##
#M IsBound\[\]( <emptyvec>, <pos> ) . for empty row vector, and pos. integer
##
InstallMethod( IsBound\[\],
"for an empty row vector, and a positive integer",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep,
IsPosInt ], 0,
function( emptyvec, pos )
return false;
end );
#############################################################################
##
#M ShallowCopy( <emptyvec> ) . . . . . . . . . . . . for an empty row vector
##
InstallMethod( ShallowCopy,
"for an empty row vector",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( emptyvec )
Error( "mutable empty row vectors are not yet supported" );
#T !!
end );
#############################################################################
##
#M \=( <emptyvec>, <coll> ) . . . . . . for empty row vector and collection
##
InstallMethod( \=,
"for an empty row vector, and a collection in the same family",
IsIdenticalObj,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep, IsCollection ], 0,
function( emptyvec, coll )
return IsEmpty( coll );
end );
#############################################################################
##
#M \=( <coll>, <emptyvec> ) . . . . . . for collection and empty row vector
##
InstallMethod( \=,
"for a collection, and an empty row vector in the same family",
IsIdenticalObj,
[ IsCollection, IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( coll, emptyvec )
return IsEmpty( coll );
end );
#############################################################################
##
#T \<( <emptyvec>, <coll> ) . . . . . . for empty row vector and collection
#T \<( <coll>, <emptyvec> ) . . . . . . for collection and empty row vector
##
#############################################################################
##
#M \+( <emptyvec>, <emptyvec> ) . . . . . . . . . for two empty row vectors
##
InstallMethod( \+,
"for two empty row vectors in the same family",
IsIdenticalObj,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep,
IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( emptyvec1, emptyvec2 )
return emptyvec1;
end );
#############################################################################
##
#M AdditiveInverseOp( <emptyvec> ) . . . . . . . . . . for empty row vector
##
InstallMethod( AdditiveInverseOp,
"for empty row vector",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
IdFunc );
#############################################################################
##
#M ZeroOp( <emptyvec> ) . . . . . . . . . . . . . . . for empty row vector
##
InstallMethod( ZeroOp,
"for empty row vector",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
IdFunc );
#############################################################################
##
#M \*( <coeff>, <emptyvec> ) . . . . for mult. element and empty row vector
##
InstallMethod( \*,
"for multiplicative element, and empty row vector",
IsElmsColls,
[ IsMultiplicativeElement,
IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( coeff, emptyvec )
return emptyvec;
end );
#############################################################################
##
#M \*( <emptyvec>, <coeff> ) . . . . for empty row vector and mult. element
##
InstallMethod( \*,
"for empty row vector, and multiplicative element",
IsCollsElms,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep,
IsMultiplicativeElement ], 0,
function( emptyvec, coeff )
return emptyvec;
end );
#############################################################################
##
#M \*( <int>, <emptyvec> ) . . . . . . . . for integer, and empty row vector
##
InstallMethod( \*,
"for integer, and empty row vector",
true,
[ IsInt, IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( int, emptyvec )
return emptyvec;
end );
#############################################################################
##
#M \*( <emptyvec>, <int> ) . . . . . . . . for empty row vector, and integer
##
InstallMethod( \*,
"for empty row vector, and integer",
true,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep, IsInt ], 0,
function( emptyvec, int )
return emptyvec;
end );
#############################################################################
##
#M \*( <emptyvec>, <emptyvec> ) . . . . . . . . . for two empty row vectors
##
InstallMethod( \*,
"for two empty row vectors in the same family",
IsIdenticalObj,
[ IsRowVector and IsEmpty and IsEmptyRowVectorRep,
IsRowVector and IsEmpty and IsEmptyRowVectorRep ], 0,
function( emptyvec1, emptyvec2 )
return Zero( ElementsFamily( FamilyObj( emptyvec1 ) ) );
end );
#############################################################################
##
#E rvecempt.gi . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
|