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.

source: branches/f4grobner/ngrobner-package.lisp@ 536

Last change on this file since 536 was 536, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 3.6 KB
Line 
1;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*-
2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3;;;
4;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
5;;;
6;;; This program is free software; you can redistribute it and/or modify
7;;; it under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 2 of the License, or
9;;; (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19;;;
20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21
22(defpackage "NGROBNER"
23 (:use :cl :ring :monomial :order :term :polynomial :grobner-debug
24 :division :buchberger :gebauer-moeller :gb-postprocessing :ideal
25 :utils :grobner-wrap)
26 (:export
27 ;;
28 ;; Global switches valid at maxima level
29 ;;
30 "$LEX" "$GRLEX" "$GREVLEX" "$INVLEX" "$RING_OF_INTEGERS"
31 "$POLY_ELIMINATION_ORDER" "$POLY_MONOMIAL_ORDER"
32 "$POLY_MONOMIAL_ORDER" "$POLY_PRIMARY_ELIMINATION_ORDER"
33 "$POLY_PRIMARY_ELIMINATION_ORDER" "$POLY_RETURN_TERM_LIST"
34 "$POLY_SECONDARY_ELIMINATION_ORDER"
35 "$POLY_COEFFICIENT_RING"
36 "$POLY_GROBNER_DEBUG"
37 ;;
38 ;; Global variables
39 ;;
40 "*EXPRESSION-RING*"
41 "*ELIMINATION-ORDER*" "*MONOMIAL-ORDER*"
42 "*PRIMARY-ELIMINATION-ORDER*" "*SECONDARY-ELIMINATION-ORDER*"
43 "*RATDISREP-FUN*"
44 ;;
45 ;; Polynomial ring operations
46 ;;
47 "POLY-ADD" "POLY-MUL" "POLY-NORMALIZE" "POLY-NORMALIZE-LIST"
48 "POLY-ZEROP" "POLY-EXPT" "POLY-LCM" "POLY-LM" "POLY-LT"
49 "POLY-PSEUDO-DIVIDE" "POLY-SUB" "POLY-UMINUS"
50 ;;
51 ;; High-level Groebner Basis related functions
52 ;;
53 "NORMAL-FORM"
54 "POLY-EXACT-DIVIDE"
55 "COLON-IDEAL" "ELIMINATION-IDEAL"
56 "GROBNER"
57 "REDUCED-GROBNER"
58 "FIND-ORDER" "FIND-RING"
59 "GROBNER-EQUAL" "GROBNER-MEMBER" "GROBNER-SUBSETP"
60 "IDEAL-INTERSECTION" "IDEAL-POLYSATURATION"
61 "IDEAL-POLYSATURATION-1" "IDEAL-SATURATION" "IDEAL-SATURATION-1"
62 "MINIMIZATION" "REDUCTION"
63
64 ;;
65 ;; Low-level functions
66 ;;
67 "COERCE-COEFF" "MAKE-POLY-FROM-TERMLIST" "MAKE-POLY-ZERO" "MAKE-RING" "MAKE-TERM"
68 "MAKE-VARIABLE"
69 "MONOM-EXPONENTS" "POLY-CONTENT" "POLY-DEPENDS-P"
70 "POLY-PRIMITIVE-PART"
71 "POLYSATURATION-EXTENSION" "POLY-TERMLIST"
72 "RING-UNIT" "SATURATION-EXTENSION"
73 "SPOLY" "$POLY_ELIMINATION_ORDER"
74 "TERM-COEFF" "TERM-MONOM" "MAKELIST-1" "MAKELIST"
75 "MAKE-MONOM" "LEX>" "GRLEX>" "GREVLEX>" "REVLEX>" "INVLEX>"
76 "ELIMINATION-ORDER" "ELIMINATION-ORDER-1"
77 "*PRIMARY-ELIMINATION-ORDER*"
78 "*SECONDARY-ELIMINATION-ORDER*"
79 "*ELIMINATION-ORDER*"
80))
81
82(in-package :ngrobner)
83
84(defun compile-ngrobner ()
85 "Compile/load NGROBNER package files without ASDF. The order of files is
86 important!"
87 (dolist (file '("ngrobner-package" "utils" "ngrobner" "monomial"
88 "order" "term" "termlist" "polynomial" "priority-queue"
89 "pair-queue" "division" "criterion" "buchberger" "gebauer-moeller"
90 "gb-postprocessing" "ideal"))
91 (compile-file file :verbose t :print t)))
92
Note: See TracBrowser for help on using the repository browser.