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.
Rev | Line | |
---|
[85] | 1 | ;;; -*- mode: lisp -*-
|
---|
| 2 | (in-package :cl-user)
|
---|
| 3 |
|
---|
| 4 | #+sbcl(require :asdf)
|
---|
| 5 |
|
---|
[193] | 6 | (defpackage #:ngrobner-system
|
---|
[85] | 7 | (:use #:asdf #:cl))
|
---|
| 8 |
|
---|
[194] | 9 | (in-package #:ngrobner-system)
|
---|
[85] | 10 |
|
---|
[193] | 11 | (defsystem ngrobner
|
---|
[85] | 12 | :author "Marek Rychlik"
|
---|
| 13 | :licence "LLGPL"
|
---|
[4330] | 14 | ;; TODO: Define dependencies for components in a manner
|
---|
| 15 | ;; independent of file order
|
---|
[3746] | 16 | :components ((:file "copy")
|
---|
[4328] | 17 | (:file "utils")
|
---|
| 18 | (:file "ring" :depends-on ("copy"))
|
---|
[4327] | 19 | (:file "rational-field" :depends-on ("ring"))
|
---|
| 20 | (:file "integer-ring" :depends-on ("rational-field" "ring"))
|
---|
[1611] | 21 | (:file "monom")
|
---|
[4369] | 22 | (:file "polynomial")
|
---|
| 23 | (:file "polynomial-eval" :depends-on ("polynomial"))
|
---|
[4527] | 24 | (:file "polynomial-sugar" :depends-on ("polynomial"))
|
---|
| 25 | (:file "slow-add" :depends-on ("polynomial"))
|
---|
[1074] | 26 | (:file "infix")
|
---|
| 27 | (:file "infix-printer")
|
---|
[3783] | 28 | (:file "symbolic-polynomial")
|
---|
[3986] | 29 | (:file "heap")
|
---|
[4088] | 30 | (:file "grobner-debug")
|
---|
| 31 | (:file "division")
|
---|
[4330] | 32 | (:file "priority-queue" :depends-on ("heap"))
|
---|
[4133] | 33 | (:file "pair-queue")
|
---|
[4134] | 34 | (:file "criterion")
|
---|
[4268] | 35 | (:file "buchberger")
|
---|
[3744] | 36 | ;;(:file "gebauer-moeller")
|
---|
| 37 | ;;(:file "gb-postprocessing")
|
---|
| 38 | ;;(:file "grobner-wrap")
|
---|
| 39 | ;;(:file "ideal")
|
---|
| 40 | ;;(:file "ngrobner-package")
|
---|
[3745] | 41 | ;;(:file "ngrobner")
|
---|
[87] | 42 | )
|
---|
[85] | 43 |
|
---|
[194] | 44 | :perform (load-op :after (op ngrobner)
|
---|
| 45 | (pushnew :ngrobner cl:*features*))
|
---|
[88] | 46 |
|
---|
[85] | 47 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.
Download in other formats: