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 |     ;; TODO: Define dependencies for components in a manner
 | 
|---|
| 15 |     ;; independent of file order
 | 
|---|
| 16 |     :components ((:file "copy")
 | 
|---|
| 17 |                  (:file "utils")
 | 
|---|
| 18 |                  (:file "ring" :depends-on ("copy"))
 | 
|---|
| 19 |                  (:file "rational-field" :depends-on ("ring"))
 | 
|---|
| 20 |                  (:file "integer-ring" :depends-on ("rational-field" "ring"))
 | 
|---|
| 21 |                  (:file "monom")
 | 
|---|
| 22 |                  (:file "polynomial")
 | 
|---|
| 23 |                  (:file "polynomial-eval" :depends-on ("polynomial"))
 | 
|---|
| 24 |                  ;;(:file "fast-add" :depends-on ("polynomial"))
 | 
|---|
| 25 |                  (:file "infix")
 | 
|---|
| 26 |                  (:file "infix-printer")
 | 
|---|
| 27 |                  (:file "symbolic-polynomial")
 | 
|---|
| 28 |                  (:file "heap")
 | 
|---|
| 29 |                  (:file "grobner-debug")
 | 
|---|
| 30 |                  (:file "division")
 | 
|---|
| 31 |                  (:file "priority-queue" :depends-on ("heap"))
 | 
|---|
| 32 |                  (:file "pair-queue")
 | 
|---|
| 33 |                  (:file "criterion")
 | 
|---|
| 34 |                  (:file "buchberger")
 | 
|---|
| 35 |                  ;;(:file "gebauer-moeller")
 | 
|---|
| 36 |                  ;;(:file "gb-postprocessing")
 | 
|---|
| 37 |                  ;;(:file "grobner-wrap")
 | 
|---|
| 38 |                  ;;(:file "ideal")
 | 
|---|
| 39 |                  ;;(:file "ngrobner-package")
 | 
|---|
| 40 |                  ;;(:file "ngrobner")
 | 
|---|
| 41 |                  )
 | 
|---|
| 42 | 
 | 
|---|
| 43 |     :perform     (load-op :after (op ngrobner)
 | 
|---|
| 44 |                           (pushnew :ngrobner cl:*features*))
 | 
|---|
| 45 | 
 | 
|---|
| 46 |     )
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.
 
     
        
    
    
      Download in other formats: