1######################### BEGIN COPYRIGHT MESSAGE #########################
2# GBNP - computing Gröbner bases of noncommutative polynomials
3# Copyright 2001-2010 by Arjeh M. Cohen, Dié A.H. Gijsbers, Jan Willem
4# Knopper, Chris Krook. Address: Discrete Algebra and Geometry (DAM) group
5# at the Department of Mathematics and Computer Science of Eindhoven
6# University of Technology.
7#
8# For acknowledgements see the manual. The manual can be found in several
9# formats in the doc subdirectory of the GBNP distribution. The
10# acknowledgements formatted as text can be found in the file chap0.txt.
11#
12# GBNP is free software; you can redistribute it and/or modify it under
13# the terms of the Lesser GNU General Public License as published by the
14# Free Software Foundation (FSF); either version 2.1 of the License, or
15# (at your option) any later version. For details, see the file 'LGPL' in
16# the doc subdirectory of the GBNP distribution or see the FSF's own site:
17# http://www.gnu.org/licenses/lgpl.html
18########################## END COPYRIGHT MESSAGE ##########################
19
20### init file for GBNP, reads all the .gd files
21
22#protect the name GBNP, but not the record entries GBNP.*
23DeclareGlobalVariable("GBNP");
24
25ReadPackage("GBNP", "lib/fincheck.gd");
26ReadPackage("GBNP", "lib/graphs.gd");
27ReadPackage("GBNP", "lib/grobner.gd");
28ReadPackage("GBNP", "lib/nparith.gd");
29ReadPackage("GBNP", "lib/npformat.gd");
30ReadPackage("GBNP", "lib/printing2.gd");
31ReadPackage("GBNP", "lib/printing.gd");
32ReadPackage("GBNP", "lib/trace.gd");
33ReadPackage("GBNP", "lib/trunc.gd");
34
35ReadPackage("GBNP", "lib/kary-heap.gd");
36DeclareInfoClass("InfoGBNP");
37DeclareInfoClass("InfoGBNPTime");
38
39# nmo files
40
41ReadPackage("GBNP", "lib/nmo/ncalgebra.gd");
42ReadPackage("GBNP", "lib/nmo/ncordmachine.gd");
43ReadPackage("GBNP", "lib/nmo/ncorderings.gd");
44ReadPackage("GBNP", "lib/nmo/ncinterface.gd");
45ReadPackage("GBNP", "lib/nmo/ncutils.gd");
46