File: read.g

package info (click to toggle)
gap-ctbllib 1.3.11-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 76,256 kB
  • sloc: xml: 41,608; makefile: 219; javascript: 155
file content (39 lines) | stat: -rw-r--r-- 1,416 bytes parent folder | download
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
#############################################################################
##
#W  read.g               GAP 4 package CTblLib                  Thomas Breuer
##

# Notify functions concerning Deligne-Lusztig names.
DeclareAutoreadableVariables( "ctbllib", "dlnames/dllib.g",
    [ "DeltigLibUnipotentCharacters", "DeltigLibGetRecord" ] );

# Read the implementation part.
ReadPackage( "ctbllib", "gap4/ctadmin.gi" );
ReadPackage( "ctbllib", "gap4/construc.gi" );
ReadPackage( "ctbllib", "gap4/ctblothe.gi" );
ReadPackage( "ctbllib", "gap4/test.g" );

# Read functions concerning Deligne-Lusztig names.
ReadPackage( "ctbllib", "dlnames/dlnames.gi" );

# Initialize database attributes
# and Browse overviews of tables, irrationalities, and differences of data.
ReadPackage( "ctbllib", "gap4/ctbltoct.g" );
CTblLib.Data.IdEnumerator:= rec( attributes:= rec(), identifiers:= [] );
CTblLib.Data.IdEnumeratorExt:= rec( attributes:= rec(), identifiers:= [] );
CTblLib.Data.attributesRelevantForGroupInfoForCharacterTable:= [];
CTblLib.SpinSymNames:= [];

# Use the code in CTblLib to build an id enumerator, independent of Browse.
ReadPackage( "ctbllib", "gap4/ctdbattr.g" );

# Load ATLAS related stuff.
ReadPackage( "ctbllib", "gap4/od.g" );
ReadPackage( "ctbllib", "gap4/atlasstr.g" );
ReadPackage( "ctbllib", "gap4/atlasirr.g" );


#############################################################################
##
#E