-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathinit.g
More file actions
50 lines (42 loc) · 1.78 KB
/
init.g
File metadata and controls
50 lines (42 loc) · 1.78 KB
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
#############################################################################
##
#W init.g GAP 4 package 'polycyclic' Bettina Eick
#W Werner Nickel
#W Max Horn
##
#############################################################################
##I introduce the NC versions of PreImages...
if not IsBound( PreImagesNC ) then
BindGlobal( "PreImagesNC", PreImages );
fi;
if not IsBound( PreImagesSetNC ) then
BindGlobal( "PreImagesSetNC", PreImagesSet );
fi;
if not IsBound( PreImagesRepresentativeNC ) then
BindGlobal( "PreImagesRepresentativeNC", PreImagesRepresentative );
fi;
#############################################################################
##
#D Read .gd files
##
ReadPackage( "polycyclic", "gap/matrix/matrix.gd");
ReadPackage( "polycyclic", "gap/basic/infos.gd");
ReadPackage( "polycyclic", "gap/basic/collect.gd");
ReadPackage( "polycyclic", "gap/basic/pcpelms.gd");
ReadPackage( "polycyclic", "gap/basic/pcpgrps.gd");
ReadPackage( "polycyclic", "gap/basic/pcppcps.gd");
ReadPackage( "polycyclic", "gap/basic/grphoms.gd");
ReadPackage( "polycyclic", "gap/basic/basic.gd");
ReadPackage( "polycyclic", "gap/cohom/cohom.gd");
ReadPackage( "polycyclic", "gap/matrep/matrep.gd");
ReadPackage( "polycyclic", "gap/matrep/unitri.gd");
ReadPackage( "polycyclic", "gap/pcpgrp/pcpgrp.gd");
ReadPackage( "polycyclic", "gap/pcpgrp/torsion.gd");
ReadPackage( "polycyclic", "gap/exam/exam.gd");
##
## Load list of obsolete names. In GAP before 4.5, this is always done;
## starting with GAP 4.5, we honors the "ReadObsolete" user preference.
##
if UserPreference( "ReadObsolete" ) <> false then
ReadPackage( "polycyclic", "gap/obsolete.gd");
fi;