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 | (in-package :ngrobner)
|
---|
23 |
|
---|
24 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
25 | ;;
|
---|
26 | ;; Global switches
|
---|
27 | ;;
|
---|
28 | ;; Can be used in Maxima just fine, as they observe the
|
---|
29 | ;; Maxima naming convention, i.e. all names visible at the
|
---|
30 | ;; Maxima toplevel begin with a '$'.
|
---|
31 | ;;
|
---|
32 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
33 |
|
---|
34 | (defvar $poly_monomial_order '$lex
|
---|
35 | "This switch controls which monomial order is used in polynomial
|
---|
36 | and Grobner basis calculations. If not set, LEX will be used")
|
---|
37 |
|
---|
38 | (defvar $poly_coefficient_ring '$expression_ring
|
---|
39 | "This switch indicates the coefficient ring of the polynomials
|
---|
40 | that will be used in grobner calculations. If not set, Maxima's
|
---|
41 | general expression ring will be used. This variable may be set
|
---|
42 | to RING_OF_INTEGERS if desired.")
|
---|
43 |
|
---|
44 | (defvar $poly_primary_elimination_order nil
|
---|
45 | "Name of the default order for eliminated variables in elimination-based functions.
|
---|
46 | If not set, LEX will be used.")
|
---|
47 |
|
---|
48 | (defvar $poly_secondary_elimination_order nil
|
---|
49 | "Name of the default order for kept variables in elimination-based functions.
|
---|
50 | If not set, LEX will be used.")
|
---|
51 |
|
---|
52 | (defvar $poly_elimination_order nil
|
---|
53 | "Name of the default elimination order used in elimination calculations.
|
---|
54 | If set, it overrides the settings in variables POLY_PRIMARY_ELIMINATION_ORDER
|
---|
55 | and SECONDARY_ELIMINATION_ORDER. The user must ensure that this is a true
|
---|
56 | elimination order valid for the number of eliminated variables.")
|
---|
57 |
|
---|
58 | (defvar $poly_return_term_list nil
|
---|
59 | "If set to T, all functions in this package will return each polynomial as a
|
---|
60 | list of terms in the current monomial order rather than a Maxima general expression.")
|
---|
61 |
|
---|
62 | (defvar $poly_grobner_debug nil
|
---|
63 | "If set to TRUE, produce debugging and tracing output.")
|
---|
64 |
|
---|
65 | (defvar $poly_grobner_algorithm '$buchberger
|
---|
66 | "The name of the algorithm used to find grobner bases.")
|
---|
67 |
|
---|
68 | (defvar $poly_top_reduction_only nil
|
---|
69 | "If not FALSE, use top reduction only whenever possible.
|
---|
70 | Top reduction means that division algorithm stops after the first reduction.")
|
---|
71 |
|
---|
72 | |
---|
73 |
|
---|
74 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
75 | ;;
|
---|
76 | ;; Coefficient ring operations
|
---|
77 | ;;
|
---|
78 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
79 | ;;
|
---|
80 | ;; These are ALL operations that are performed on the coefficients by
|
---|
81 | ;; the package, and thus the coefficient ring can be changed by merely
|
---|
82 | ;; redefining these operations.
|
---|
83 | ;;
|
---|
84 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
85 |
|
---|
86 | (defstruct (ring)
|
---|
87 | (parse #'identity :type function)
|
---|
88 | (unit #'identity :type function)
|
---|
89 | (zerop #'identity :type function)
|
---|
90 | (add #'identity :type function)
|
---|
91 | (sub #'identity :type function)
|
---|
92 | (uminus #'identity :type function)
|
---|
93 | (mul #'identity :type function)
|
---|
94 | (div #'identity :type function)
|
---|
95 | (lcm #'identity :type function)
|
---|
96 | (ezgcd #'identity :type function)
|
---|
97 | (gcd #'identity :type function))
|
---|
98 |
|
---|
99 | (defparameter *ring-of-integers*
|
---|
100 | (make-ring
|
---|
101 | :parse #'identity
|
---|
102 | :unit #'(lambda () 1)
|
---|
103 | :zerop #'zerop
|
---|
104 | :add #'+
|
---|
105 | :sub #'-
|
---|
106 | :uminus #'-
|
---|
107 | :mul #'*
|
---|
108 | :div #'/
|
---|
109 | :lcm #'lcm
|
---|
110 | :ezgcd #'(lambda (x y &aux (c (gcd x y))) (values c (/ x c) (/ y c)))
|
---|
111 | :gcd #'gcd)
|
---|
112 | "The ring of integers.")
|
---|
113 |
|
---|
114 | (defvar *expression-ring* *ring-of-integers*
|
---|
115 | "The ring of coefficients, over which all polynomials are assumed to
|
---|
116 | be defined.")
|
---|
117 |
|
---|
118 | (defvar *ratdisrep-fun* #'identity
|
---|
119 | "A function applied to polynomials after conversion to Maxima representation.")
|
---|
120 |
|
---|
121 | |
---|
122 |
|
---|
123 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
124 | ;;
|
---|
125 | ;; This is how we perform operations on coefficients
|
---|
126 | ;; using Maxima functions.
|
---|
127 | ;;
|
---|
128 | ;; Functions and macros dealing with internal representation structure
|
---|
129 | ;;
|
---|
130 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
131 |
|
---|
132 |
|
---|
133 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
134 | ;;
|
---|
135 | ;; Debugging/tracing
|
---|
136 | ;;
|
---|
137 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
138 | (defmacro debug-cgb (&rest args)
|
---|
139 | `(when $poly_grobner_debug (format *terminal-io* ,@args)))
|
---|
140 |
|
---|
141 |
|
---|
142 |
|
---|
143 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
144 | ;;
|
---|
145 | ;; These are provided mostly for debugging purposes To enable
|
---|
146 | ;; verification of grobner bases with BUCHBERGER-CRITERION, do
|
---|
147 | ;; (pushnew :grobner-check *features*) and compile/load this file.
|
---|
148 | ;; With this feature, the calculations will slow down CONSIDERABLY.
|
---|
149 | ;;
|
---|
150 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
151 |
|
---|
152 | (defun grobner-test (ring g f)
|
---|
153 | "Test whether G is a Grobner basis and F is contained in G. Return T
|
---|
154 | upon success and NIL otherwise."
|
---|
155 | (debug-cgb "~&GROBNER CHECK: ")
|
---|
156 | (let (($poly_grobner_debug nil)
|
---|
157 | (stat1 (buchberger-criterion ring g))
|
---|
158 | (stat2
|
---|
159 | (every #'poly-zerop
|
---|
160 | (makelist (normal-form ring (copy-tree (elt f i)) g nil)
|
---|
161 | (i 0 (1- (length f)))))))
|
---|
162 | (unless stat1 (error "~&Buchberger criterion failed."))
|
---|
163 | (unless stat2
|
---|
164 | (error "~&Original polys not in ideal spanned by Grobner.")))
|
---|
165 | (debug-cgb "~&GROBNER CHECK END")
|
---|
166 | t)
|
---|
167 |
|
---|
168 |
|
---|
169 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
170 | ;;
|
---|
171 | ;; Selection of algorithm and pair heuristic
|
---|
172 | ;;
|
---|
173 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
174 |
|
---|
175 | (defun find-grobner-function (algorithm)
|
---|
176 | "Return a function which calculates Grobner basis, based on its
|
---|
177 | names. Names currently used are either Lisp symbols, Maxima symbols or
|
---|
178 | keywords."
|
---|
179 | (ecase algorithm
|
---|
180 | ((buchberger :buchberger $buchberger) #'buchberger)
|
---|
181 | ((parallel-buchberger :parallel-buchberger $parallel_buchberger) #'parallel-buchberger)
|
---|
182 | ((gebauer-moeller :gebauer_moeller $gebauer_moeller) #'gebauer-moeller)))
|
---|
183 |
|
---|
184 | (defun grobner (ring f &optional (start 0) (top-reduction-only nil))
|
---|
185 | ;;(setf F (sort F #'< :key #'sugar))
|
---|
186 | (funcall
|
---|
187 | (find-grobner-function $poly_grobner_algorithm)
|
---|
188 | ring f start top-reduction-only))
|
---|
189 |
|
---|
190 | (defun reduced-grobner (ring f &optional (start 0) (top-reduction-only $poly_top_reduction_only))
|
---|
191 | (reduction ring (grobner ring f start top-reduction-only)))
|
---|
192 |
|
---|
193 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
194 | ;;
|
---|
195 | ;; Conversion from internal to infix form
|
---|
196 | ;;
|
---|
197 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
198 |
|
---|
199 | (defun coerce-to-infix (poly-type object vars)
|
---|
200 | (case poly-type
|
---|
201 | (:termlist
|
---|
202 | `(+ ,@(mapcar #'(lambda (term) (coerce-to-infix :term term vars)) object)))
|
---|
203 | (:polynomial
|
---|
204 | (coerce-to-infix :termlist (poly-termlist object) vars))
|
---|
205 | (:poly-list
|
---|
206 | `([ ,@(mapcar #'(lambda (p) (coerce-to-infix :polynomial p vars)) object)))
|
---|
207 | (:term
|
---|
208 | `(* ,(term-coeff object)
|
---|
209 | ,@(mapcar #'(lambda (var power) `(expt ,var ,power))
|
---|
210 | vars (monom-exponents (term-monom object)))))
|
---|
211 | (otherwise
|
---|
212 | object)))
|
---|
213 |
|
---|
214 |
|
---|
215 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
216 | ;;
|
---|
217 | ;; Order utilities
|
---|
218 | ;;
|
---|
219 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
220 |
|
---|
221 | (defun find-order (order)
|
---|
222 | "This function returns the order function bases on its name."
|
---|
223 | (cond
|
---|
224 | ((null order) nil)
|
---|
225 | ((symbolp order)
|
---|
226 | (case order
|
---|
227 | ((lex :lex $lex) #'lex>)
|
---|
228 | ((grlex :grlex $grlex) #'grlex>)
|
---|
229 | ((grevlex :grevlex $grevlex) #'grevlex>)
|
---|
230 | ((invlex :invlex $invlex) #'invlex>)
|
---|
231 | ((elimination-order-1 :elimination-order-1 elimination_order_1) #'elimination-order-1)
|
---|
232 | (otherwise
|
---|
233 | (warn "~%Warning: Order ~A not found. Using default.~%" order))))
|
---|
234 | (t
|
---|
235 | (warn "~%Order specification ~A is not recognized. Using default.~%" order)
|
---|
236 | nil)))
|
---|
237 |
|
---|
238 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
239 | ;;
|
---|
240 | ;; Ring utilities
|
---|
241 | ;;
|
---|
242 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
243 |
|
---|
244 | (defun find-ring (ring)
|
---|
245 | "This function returns the ring structure bases on input symbol."
|
---|
246 | (cond
|
---|
247 | ((null ring) nil)
|
---|
248 | ((symbolp ring)
|
---|
249 | (case ring
|
---|
250 | ((expression-ring :expression-ring $expression_ring) *expression-ring*)
|
---|
251 | ((ring-of-integers :ring-of-integers $ring_of_integers) *ring-of-integers*)
|
---|
252 | (otherwise
|
---|
253 | (warn "~%Warning: Ring ~A not found. Using default.~%" ring))))
|
---|
254 | (t
|
---|
255 | (warn "~%Ring specification ~A is not recognized. Using default.~%" ring)
|
---|
256 | nil)))
|
---|