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.
Line | |
---|
1 | ;;; -*- mode: lisp -*-
|
---|
2 | (in-package :cl-user)
|
---|
3 |
|
---|
4 | #+sbcl(require :asdf)
|
---|
5 |
|
---|
6 | (defpackage #:ngrobner-system
|
---|
7 | (:use #:asdf #:cl))
|
---|
8 |
|
---|
9 | (in-package #:ngrobner-system)
|
---|
10 |
|
---|
11 | (defsystem ngrobner
|
---|
12 | :author "Marek Rychlik"
|
---|
13 | :licence "LLGPL"
|
---|
14 | :components ((:file "copy")
|
---|
15 | (:file "utils")
|
---|
16 | (:file "monom")
|
---|
17 | (:file "polynomial")
|
---|
18 | (:file "infix")
|
---|
19 | (:file "infix-printer")
|
---|
20 | (:file "symbolic-polynomial")
|
---|
21 | (:file "priority-queue")
|
---|
22 | ;;(:file "pair-queue")
|
---|
23 | ;;(:file "grobner-debug")
|
---|
24 | ;;(:file "division")
|
---|
25 | ;;(:file "criterion")
|
---|
26 | ;;(:file "buchberger")
|
---|
27 | ;;(:file "gebauer-moeller")
|
---|
28 | ;;(:file "gb-postprocessing")
|
---|
29 | ;;(:file "grobner-wrap")
|
---|
30 | ;;(:file "ideal")
|
---|
31 | ;;(:file "ngrobner-package")
|
---|
32 | ;;(:file "ngrobner")
|
---|
33 | )
|
---|
34 |
|
---|
35 | :perform (load-op :after (op ngrobner)
|
---|
36 | (pushnew :ngrobner cl:*features*))
|
---|
37 |
|
---|
38 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.
Download in other formats: