close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/compile-me.lisp@ 548

Last change on this file since 548 was 548, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 620 bytes
RevLine 
[545]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")
[546]6 "All Lisp files needed. The order of files is important!")
[545]7
[543]8(defun compile-ngrobner ()
[546]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 ()
[547]14 "Load NGROBNER package files without ASDF."
[546]15 (dolist (file *files*)
[548]16 (load file :verbose t :print t)))
Note: See TracBrowser for help on using the repository browser.