File: compat3c.g

package info (click to toggle)
gap 4r4p10-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 29,224 kB
  • ctags: 7,084
  • sloc: ansic: 98,591; sh: 3,284; perl: 2,263; makefile: 467; awk: 6
file content (495 lines) | stat: -rw-r--r-- 12,915 bytes parent folder | download | duplicates (4)
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
#############################################################################
##
#W  compat3c.g                  GAP library                      Frank Celler
##
#H  @(#)$Id: compat3c.g,v 4.13 2002/04/15 10:04:30 sal Exp $
##
#Y  Copyright (C)  1997,  Lehrstuhl D fuer 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 provides methods to make records behave as records with
##  `operations' component in {\GAP} 3.
##
Revision.compat3c_g :=
    "@(#)$Id: compat3c.g,v 4.13 2002/04/15 10:04:30 sal Exp $";


#############################################################################
##
##  The files `compat3a.g' and `compat3b.g' must have been read before this
##  file can be read.
##
if not IsBound( Revision.compat3b_g ) then
  ReadLib( "compat3b.g" );
fi;


#############################################################################
##
#M  PrintObj( <record> )
#M  ViewObj( <record> )
##
##  The record <record> is printed either by printing all its components or,
##  if the component `operations' of <record> is bound and has a component
##  `Print', this function is called with argument <record>.
##
InstallMethod( PrintObj,
    "for a record, look for entry in `operations'",
    true,
    [ IsRecord ], SUM_FLAGS,
    PRINT_PREC );

InstallMethod( ViewObj,
    "for a record, look for entry in `operations'",
    true,
    [ IsRecord ], SUM_FLAGS,
    PRINT_PREC );


#############################################################################
##
#M  <record> + <object>
#M  <object> + <record>
##
##  Note that `SUM_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \+,
    "record + object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    SUM_PREC );

InstallOtherMethod( \+,
    "object + record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    SUM_PREC );


#############################################################################
##
#M  ZeroOp( <record> )
##
InstallOtherMethod( ZeroOp,
    "method for a record (expect `operations' component)",
    true,
    [ IsRecord ],
    SUM_FLAGS,
    function( record )
    if     IsBound( record.operations )
       and IsBound( record.operations.\* ) then
      return record.operations.\*( 0, record );
    else
      TryNextMethod();
    fi;
    end );


#############################################################################
##
#M  AdditiveInverseOp( <record> )
##
##  Note that we cannot simply delegate to multiplication by `-1' since it
##  may happen that no individual multiplication was installed, and the
##  generic multiplication would delegate back to `AdditiveInverseOp'.
##
InstallOtherMethod( AdditiveInverseOp,
    "method for a record (expect `operations' component)",
    true,
    [ IsRecord ],
    SUM_FLAGS,
    function( record )
    if IsBound( record.operations ) then
      if     IsOperationsRecord( record.operations )
         and IsBound( record.operations!.COMPONENTS.\* ) then
        return record.operations.\*( -1, record );
      elif   IsRecord( record.operations )
         and IsBound( record.operations.\* ) then
        return record.operations.\*( -1, record );
      fi;
    fi;
    TryNextMethod();
    end );


#############################################################################
##
#M  <record> - <object>
#M  <object> - <record>
##
##  Note that `DIFF_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \-,
    "record - object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    DIFF_PREC );

InstallOtherMethod( \-,
    "object - record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    DIFF_PREC );


#############################################################################
##
#M  <record> * <object>
#M  <object> * <record>
##
##  Note that `PROD_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \*,
    "record * object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    PROD_PREC );

InstallOtherMethod( \*,
    "object * record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    PROD_PREC );


#############################################################################
##
#M  OneOp( <record> )
##
##  Note that we cannot simply delegate to powering by `0' since it
##  may happen that no individual powering was installed, and the
##  generic powering would delegate back to `One'.
##
InstallOtherMethod( OneOp,
    "method for a record (expect `operations' component)",
    true,
    [ IsRecord ],
    SUM_FLAGS,
    function( record )
    if IsBound( record.operations ) then
      if     IsOperationsRecord( record.operations )
         and IsBound( record.operations!.COMPONENTS.\^ ) then
        return record.operations.\^( record, 0 );
      elif   IsRecord( record.operations )
         and IsBound( record.operations.\^ ) then
        return record.operations.\^( record, 0 );
      fi;
    fi;
    TryNextMethod();
    end );


#############################################################################
##
#M  InverseOp( <record> )
##
##  Note that we cannot simply delegate to powering by `-1' since it
##  may happen that no individual powering was installed, and the
##  generic powering would delegate back to `Inverse'.
##
InstallOtherMethod( InverseOp,
    "method for a record (expect `operations' component)",
    true,
    [ IsRecord ],
    SUM_FLAGS,
    function( record )
    if IsBound( record.operations ) then
      if     IsOperationsRecord( record.operations )
         and IsBound( record.operations!.COMPONENTS.\^ ) then
        return record.operations.\^( record, -1 );
      elif   IsRecord( record.operations )
         and IsBound( record.operations.\^ ) then
        return record.operations.\^( record, -1 );
      fi;
    fi;
    TryNextMethod();
    end );


#############################################################################
##
#M  <record> / <object>
#M  <object> / <record>
##
##  Note that `QUO_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \/,
    "record / object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    QUO_PREC );

InstallOtherMethod( \/,
    "object / record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    QUO_PREC );


#############################################################################
##
#M  <record> ^ <object>
#M  <object> ^ <record>
##
##  Note that `POW_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \^,
    "record ^ object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    POW_PREC );

InstallOtherMethod( \^,
    "object ^ record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    POW_PREC );


#############################################################################
##
#M  <record> mod <object>
#M  <object> mod <record>
##
##  Note that `MOD_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \mod,
    "record mod object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    MOD_PREC );

InstallOtherMethod( \mod,
    "object mod record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    MOD_PREC );


#############################################################################
##
#M  LeftQuotient( <record>, <object> )
#M  LeftQuotient( <object>, <record> )
##
##  Note that `LQUO_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( LeftQuotient,
    "record, object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    LQUO_PREC );

InstallOtherMethod( LeftQuotient,
    "object, record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    LQUO_PREC );


#############################################################################
##
#M  Comm( <record>, <object> )
#M  Comm( <object>, <record> )
##
##  Note that `COMM_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( Comm,
    "record, object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    COMM_PREC );

InstallOtherMethod( Comm,
    "object, record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    COMM_PREC );


#############################################################################
##
#M  <object> in <record>
##
InstallOtherMethod( \in,
    "object in record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    IN_PREC );


#############################################################################
##
#M  <record> = <object>
#M  <object> = <record>
##
##  Note that `EQ_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \=,
    "record = object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    EQ_PREC );

InstallOtherMethod( \=,
    "object = record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    EQ_PREC );


#############################################################################
##
#M  <record> < <object>
#M  <object> < <record>
##
##  Note that `LT_PREC' checks first the right operand for being a record
##  with `operations' component, and then the left operand.
##
InstallOtherMethod( \<,
    "record < object",
    true,
    [ IsRecord,
      IsObject ],
    SUM_FLAGS,
    LT_PREC );

InstallOtherMethod( \<,
    "object < record",
    true,
    [ IsObject,
      IsRecord ],
    SUM_FLAGS,
    LT_PREC );


#############################################################################
##
#F  InstallRecordMethod1Args( <opr>, <compname> )
##
##  provides the installation of a method for the unary operation <opr> that
##  is associated to the component <compname> of a record.
##
InstallRecordMethod1Args := function( opr, compname )
    InstallOtherMethod( opr,
    "method for a record (expect `operations' component)",
    true,
    [ IsRecord ], 1,  # override method that ignores `operations'
    function( record )
    if IsBound( record.operations ) then
      if     IsOperationsRecord( record.operations )
         and IsBound( record.operations!.COMPONENTS.( compname ) ) then
        return record.operations!.COMPONENTS.( compname )( record );
      elif   IsRecord( record.operations )
         and IsBound( record.operations.( compname ) ) then
        return record.operations.( compname )( record );
      fi;
    fi;
    TryNextMethod();
    end );
end;


#############################################################################
##
#M  Int( <record> ) . . . . . . . . . . . . .  for a record with `operations'
##
InstallRecordMethod1Args( Int, "Int" );


#############################################################################
##
#M  String( <record> )  . . . . . . . . . . .  for a record with `operations'
##
InstallRecordMethod1Args( String, "String" );


#############################################################################
##
##  In order to allow matrices, groups etc.~of records,
##  we install the implication that records are scalars.
##
##  For convincing the kernel, we need some very ugly hacks.
##
InstallTrueMethod( IsScalar, IsRecord );
InstallTrueMethod( IsScalarCollection, IsRecordCollection );
InstallTrueMethod( IsScalarCollColl, IsRecordCollColl );

# for chaching types of homogeneous lists, assigned in kernel when needed 
RecordsFamily!.TYPES_LIST_FAM  := [];
# for efficiency
RecordsFamily!.TYPES_LIST_FAM[27] := 0;

Fam:= CollectionsFamily( RecordsFamily );
Fam!.IMP_FLAGS := AND_FLAGS( Fam!.IMP_FLAGS,
                             FLAGS_FILTER( IsScalarCollection ) );
Fam!.TYPES_LIST_FAM  := [,,,,,,,,,,,,,,,,,,,,,,,,,,false]; # list with 12 holes

Fam:= CollectionsFamily( Fam );
Fam!.IMP_FLAGS := AND_FLAGS( Fam!.IMP_FLAGS,
                             FLAGS_FILTER( IsScalarCollColl ) );

MakeReadWriteGVar( "TYPE_PREC_MUTABLE" );
TYPE_PREC_MUTABLE := NewType( RecordsFamily,
    IS_MUTABLE_OBJ and IsRecord and IsInternalRep );
MakeReadOnlyGVar( "TYPE_PREC_MUTABLE" );

MakeReadWriteGVar( "TYPE_PREC_IMMUTABLE" );
TYPE_PREC_IMMUTABLE := NewType( RecordsFamily,
    IsRecord and IsInternalRep );
MakeReadOnlyGVar( "TYPE_PREC_IMMUTABLE" );


#############################################################################
##
#E  compat3c.g  . . . . . . . . . . . . . . . . . . . . . . . . . . ends here