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.
Last change
on this file since 87 was 87, checked in by Marek Rychlik, 10 years ago |
* empty log message *
|
File size:
662 bytes
|
Line | |
---|
1 | ;;; -*- mode: lisp -*-
|
---|
2 | (in-package :cl-user)
|
---|
3 |
|
---|
4 | #+sbcl(require :asdf)
|
---|
5 |
|
---|
6 | (defpackage #:grobner-system
|
---|
7 | (:use #:asdf #:cl))
|
---|
8 |
|
---|
9 | (in-package #:grobner-system)
|
---|
10 |
|
---|
11 | (defsystem grobner
|
---|
12 | :author "Marek Rychlik"
|
---|
13 | :licence "LLGPL"
|
---|
14 | :components ((:file "grobner")
|
---|
15 | (:file "monomial")
|
---|
16 | (:file "term")
|
---|
17 | (:file "termlist")
|
---|
18 | (:file "polynomial")
|
---|
19 | (:file "order")
|
---|
20 | (:file "order-mk")
|
---|
21 | (:file "priority-queue")
|
---|
22 | (:file "pair-queue")
|
---|
23 | )
|
---|
24 |
|
---|
25 | :perform (load-op :after (op grobner)
|
---|
26 | (pushnew :grobner cl:*features*))
|
---|
27 |
|
---|
28 | :depends-on (:cl-ppcre)
|
---|
29 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.
Download in other formats: