1#############################################################################
2##
3##  read.g                recog package
4##                                                        Max Neunhoeffer
5##                                                            Ákos Seress
6##                                                                 et al.
7##
8##  Copyright 2005-2008 by the authors.
9##  This file is free software, see license information at the end.
10##
11##  Reading the implementation part of the recog package.
12##
13#############################################################################
14
15# Generic:
16ReadPackage("recog","gap/base/methsel.gi");
17ReadPackage("recog","gap/base/recognition.gi");
18
19# The following contain generic functionality for different types of groups:
20
21# Projective:
22ReadPackage("recog","gap/base/projective.gi");
23
24
25# Some tools:
26ReadPackage("recog","gap/tools.gi");
27
28# Permutations:
29ReadPackage("recog","gap/giant.gi");
30ReadPackage("recog","gap/snksetswrsr.gi");
31
32# Up to now there is not much here:
33ReadPackage("recog","gap/SnAnBB.gi");
34
35# Matrices/Projective:
36ReadPackage("recog","gap/findnormal.gi");
37ReadPackage("recog","gap/matimpr.gi");
38ReadPackage("recog","gap/c6.gi");
39ReadPackage("recog","gap/tensor.gi");
40# ReadPackage("recog","gap/forms.gi");
41ReadPackage("recog","gap/ppd.gi");
42ReadPackage("recog","gap/classical.gi");
43ReadPackage("recog","gap/slconstr.gi");
44ReadPackage("recog","gap/c3c5.gi");
45ReadPackage("recog","gap/d247.gi");
46ReadPackage("recog","gap/almostsimple/twoelorders.gi");
47ReadPackage("recog","gap/almostsimple.gi");
48ReadPackage("recog","gap/almostsimple/lietype.gi");
49ReadPackage("recog","gap/almostsimple/hints.gi");
50ReadPackage("recog","gap/classicalnatural.gi");
51ReadPackage("recog","gap/AnSnOnFDPM.gi");
52
53# All the method installations are now here:
54ReadPackage("recog","gap/perm.gi");
55ReadPackage("recog","gap/matrix.gi");
56ReadPackage("recog","gap/projective.gi");
57
58##
59##  This program is free software: you can redistribute it and/or modify
60##  it under the terms of the GNU General Public License as published by
61##  the Free Software Foundation, either version 3 of the License, or
62##  (at your option) any later version.
63##
64##  This program is distributed in the hope that it will be useful,
65##  but WITHOUT ANY WARRANTY; without even the implied warranty of
66##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
67##  GNU General Public License for more details.
68##
69##  You should have received a copy of the GNU General Public License
70##  along with this program.  If not, see <http://www.gnu.org/licenses/>.
71##
72
73