Line | |
---|
1 | (defvar *files*
|
---|
2 | '("utils" "monomial" "ring"
|
---|
3 | "order" "term" "termlist" "polynomial" "priority-queue"
|
---|
4 | "pair-queue" "grobner-debug" "division" "criterion" "buchberger" "gebauer-moeller"
|
---|
5 | "gb-postprocessing" "grobner-wrap" "ideal" "ngrobner-package" "ngrobner")
|
---|
6 | "All Lisp files needed. The order of files is important!")
|
---|
7 |
|
---|
8 | (defun compile-ngrobner ()
|
---|
9 | "Compile/load NGROBNER package files without ASDF."
|
---|
10 | (dolist (file *files*)
|
---|
11 | (compile-file file :verbose t :print t)))
|
---|
12 |
|
---|
13 | (defun load-ngrobner ()
|
---|
14 | "Load NGROBNER package files without ASDF."
|
---|
15 | (dolist (file *files*)
|
---|
16 | (compile-file file :verbose t :print t)))
|
---|
Note:
See
TracBrowser
for help on using the repository browser.