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 "utils")
|
---|
15 | (:file "ring")
|
---|
16 | (:file "monomial")
|
---|
17 | (:file "order")
|
---|
18 | (:file "term")
|
---|
19 | (:file "ring-and-order")
|
---|
20 | (:file "termlist")
|
---|
21 | (:file "infix")
|
---|
22 | (:file "infix-printer")
|
---|
23 | (:file "polynomial")
|
---|
24 | (:file "priority-queue")
|
---|
25 | (:file "pair-queue")
|
---|
26 | (:file "grobner-debug")
|
---|
27 | (:file "division")
|
---|
28 | (:file "criterion")
|
---|
29 | (:file "buchberger")
|
---|
30 | (:file "gebauer-moeller")
|
---|
31 | (:file "gb-postprocessing")
|
---|
32 | (:file "grobner-wrap")
|
---|
33 | (:file "ideal")
|
---|
34 | (:file "ngrobner-package")
|
---|
35 | (:file "ngrobner")
|
---|
36 | )
|
---|
37 |
|
---|
38 | :perform (load-op :after (op ngrobner)
|
---|
39 | (pushnew :ngrobner cl:*features*))
|
---|
40 |
|
---|
41 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.
Download in other formats: