1 | ;;; -*- Mode: Lisp -*-
|
---|
2 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
3 | ;;;
|
---|
4 | ;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
|
---|
5 | ;;;
|
---|
6 | ;;; This program is free software; you can redistribute it and/or modify
|
---|
7 | ;;; it under the terms of the GNU General Public License as published by
|
---|
8 | ;;; the Free Software Foundation; either version 2 of the License, or
|
---|
9 | ;;; (at your option) any later version.
|
---|
10 | ;;;
|
---|
11 | ;;; This program is distributed in the hope that it will be useful,
|
---|
12 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | ;;; GNU General Public License for more details.
|
---|
15 | ;;;
|
---|
16 | ;;; You should have received a copy of the GNU General Public License
|
---|
17 | ;;; along with this program; if not, write to the Free Software
|
---|
18 | ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
19 | ;;;
|
---|
20 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
21 |
|
---|
22 | ;; NOTE: This file is not a part of the NGROBNER package
|
---|
23 | ;; It defines the Lisp commands to compile and load the package
|
---|
24 | ;; without any sophisticated system definition facility, such as ASDF.
|
---|
25 | ;; Simply, load this file, to compile and load the system.
|
---|
26 | ;; If you want to just compile, comment out the last line: (load-ngrobner)
|
---|
27 |
|
---|
28 | (defvar *files*
|
---|
29 | '("copy"
|
---|
30 | "utils"
|
---|
31 | "monom"
|
---|
32 | ;;"ring"
|
---|
33 | ;;"order"
|
---|
34 | ;;"term"
|
---|
35 | ;;"ring-and-order"
|
---|
36 | ;;"termlist"
|
---|
37 | "infix"
|
---|
38 | "infix-printer"
|
---|
39 | "polynomial"
|
---|
40 | "priority-queue"
|
---|
41 | ;;"pair-queue"
|
---|
42 | ;;"grobner-debug"
|
---|
43 | ;;"division" ;;
|
---|
44 | ;;"criterion"
|
---|
45 | ;;"buchberger"
|
---|
46 | ;;"gebauer-moeller"
|
---|
47 | ;;"gb-postprocessing"
|
---|
48 | ;;"grobner-wrap"
|
---|
49 | ;;"ideal"
|
---|
50 | ;;"ngrobner-package"
|
---|
51 | ;;"ngrobner"
|
---|
52 | )
|
---|
53 | "All Lisp files needed. The order of files is important!")
|
---|
54 |
|
---|
55 | (defun compile-ngrobner ()
|
---|
56 | "Compile/load NGROBNER package files without ASDF."
|
---|
57 | (dolist (file *files*)
|
---|
58 | (compile-file file :verbose t :print t)))
|
---|
59 |
|
---|
60 | (defun load-ngrobner ()
|
---|
61 | "Load NGROBNER package files without ASDF."
|
---|
62 | (dolist (file *files*)
|
---|
63 | (load file :verbose t :print t)))
|
---|
64 |
|
---|
65 | (compile-ngrobner)
|
---|
66 | (load-ngrobner)
|
---|