forked from gap-packages/orb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
read.g
35 lines (32 loc) · 1.18 KB
/
read.g
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
#############################################################################
##
## orb package
## read.g
## Juergen Mueller
## Max Neunhoeffer
## Felix Noeske
##
## Copyright 2005-2008 by the authors.
## This file is free software, see license information at the end.
##
## Reading the implementation part of the orb package.
##
#############################################################################
ReadPackage("orb","gap/homwdata.gi");
ReadPackage("orb","gap/avltree.gi");
ReadPackage("orb","gap/hash.gi");
ReadPackage("orb","gap/cache.gi");
ReadPackage("orb","gap/orbits.gi");
ReadPackage("orb","gap/search.gi");
ReadPackage("orb","gap/bysuborbit.gi");
if not(CompareVersionNumbers(GAPInfo.Version,"4.7")) then
ReadPackage("orb","gap/transform.gi");
fi;
if IsBound(IO_PackageIsLoaded) then
ReadPackage("orb","gap/picklers.gi");
else
if not(IsBound(IO_PkgThingsToRead)) then
IO_PkgThingsToRead := [];
fi;
Add(IO_PkgThingsToRead,["orb","gap/picklers.gi"]);
fi;