• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

data/H03-May-2022-627,382622,789

dlnames/H03-May-2022-2,3952,277

doc/H03-May-2022-6,7885,638

gap3/H03-May-2022-3,8263,344

gap4/H03-May-2022-25,63623,173

htm/H03-May-2022-42,64235,435

tst/H03-May-2022-26,05825,286

PackageInfo.gH A D03-May-20223.4 KiB122119

READMEH A D03-May-20223 KiB8861

init.gH A D03-May-2022892 3524

read.gH A D03-May-20221.7 KiB4739

README

1
2The GAP Character Table Library
3===============================
4
5The GAP Character Table Library is an add-on package for both GAP 3.4
6and GAP 4.
7
8To get the newest released version, download the archive file
9(where 'xrypz' stands for the highest available version number)
10    ctbllib-xrypz.tar.gz
11from
12     http://www.math.rwth-aachen.de/~Thomas.Breuer/ctbllib
13and unpack it using
14    gunzip ctbllib-xrypz.tar.gz; tar xvf ctbllib-xrypz.tar
15
16Note that if you use a web browser for downloading the archive file the
17'gunzip' step above may already be done by the browser, although the name of
18your file may still have the misleading '.gz' extension.
19
20The unpacking is done preferably (but not necessarily) inside the 'pkg'
21subdirectory of your GAP 4 installation,
22see the sections "Installing a GAP Package" and "GAP Root Directories"
23in the GAP 4 Reference Manual.
24Unpacking the archive creates a subdirectory called 'ctbllib'.
25
26After this installation, the GAP Character Table Library is usually loaded
27automatically when GAP is started;
28if not then it can be loaded explicitly by typing
29
30  gap> LoadPackage( "ctbllib" );
31
32at the GAP prompt.
33Then the functions and data of the package are available in the current
34GAP session.
35
36A few introductory examples can be found in the "Tutorial" chapter of the
37package manual.
38You can read this via GAP's online help by entering
39
40  gap> ?Tutorial for the GAP Character Table Library
41
42at the GAP prompt.
43
44If you have found important features missing or if there is a bug,
45let us know and we will try to address it in the next version of the
46GAP Character Table Library.
47Please send a short email to
48
49          Thomas Breuer    <sam@math.rwth-aachen.de>
50
51This holds also if you have used the GAP Character Table Library
52to solve a problem.
53
54
55---------------------------------------------------------------------------
56
57
58For those who want to use the package with GAP 3.4
59--------------------------------------------------
60
61The installation for GAP 3.4 works like the installation for GAP 4.5,
62the package gets installed via unpacking the archive file in the `pkg'
63directory of the GAP 3.4 installation.
64
65When GAP 3 is started, the outdated character table library
66is available by default.
67For replacing it by the new one, one has to type
68
69  gap> RequirePackage( "ctbllib" );
70
71at the GAP prompt.
72
73If one wants to use the new character table library as the default,
74one can put the `RequirePackage' statement into one's .gaprc file
75(see the GAP 3.4 Reference Manual for details).
76
77The value of the global variable `TBLNAME' allows one to decide
78which character table library is actually used.
79Namely, it ends with "tbl/" if the outdated library is used,
80and with "ctbllib/data/" if the new library is used.
81
82The manual of the GAP Character Table Library is intended for GAP 4.5,
83in particular the cross-references refer to the GAP 4.5 Reference Manual.
84So when using the new character table library with GAP 3.4,
85one should still consult the documentation of the character table library
86contained in the Reference Manual of GAP 3.4.
87
88