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/division.lisp@ 1210

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

* empty log message *

File size: 8.2 KB
Line 
1;;; -*- Mode: Lisp -*-
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 "DIVISION"
23 (:use :cl :utils :ring :monomial :polynomial :grobner-debug :term :ring-and-order)
24 (:export "$POLY_TOP_REDUCTION_ONLY"
25 "POLY-PSEUDO-DIVIDE"
26 "POLY-EXACT-DIVIDE"
27 "NORMAL-FORM-STEP"
28 "NORMAL-FORM"
29 "POLY-NORMALIZE"
30 "POLY-NORMALIZE-LIST"
31 "BUCHBERGER-CRITERION"
32 ))
33
34(in-package :division)
35
36(defvar $poly_top_reduction_only nil
37 "If not FALSE, use top reduction only whenever possible.
38Top reduction means that division algorithm stops after the first reduction.")
39
40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41;;
42;; An implementation of the division algorithm
43;;
44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
45
46(defun grobner-op (ring-and-order c1 c2 m f g
47 &aux
48 (ring (ro-ring ring-and-order)))
49 "Returns C2*F-C1*M*G, where F and G are polynomials M is a monomial.
50Assume that the leading terms will cancel."
51 (declare (type ring-and-order ring-and-order))
52 #+grobner-check(funcall (ring-zerop ring)
53 (funcall (ring-sub ring)
54 (funcall (ring-mul ring) c2 (poly-lc f))
55 (funcall (ring-mul ring) c1 (poly-lc g))))
56 #+grobner-check(monom-equal-p (poly-lm f) (monom-mul m (poly-lm g)))
57 ;; Note that below we can drop the leading terms of f ang g for the
58 ;; purpose of polynomial arithmetic.
59 ;;
60 ;; TODO: Make sure that the sugar
61 ;; calculation is correct if leading terms are dropped.
62 (poly-sub ring-and-order
63 (scalar-times-poly-1 ring c2 f)
64 (scalar-times-poly-1 ring c1 (monom-times-poly m g))))
65
66(defun poly-pseudo-divide (ring-and-order f fl
67 &aux
68 (ring (ro-ring ring-and-order)))
69 "Pseudo-divide a polynomial F by the list of polynomials FL. Return
70multiple values. The first value is a list of quotients A. The second
71value is the remainder R. The third argument is a scalar coefficient
72C, such that C*F can be divided by FL within the ring of coefficients,
73which is not necessarily a field. Finally, the fourth value is an
74integer count of the number of reductions performed. The resulting
75objects satisfy the equation: C*F= sum A[i]*FL[i] + R."
76 (declare (type poly f) (list fl))
77 (do ((r (make-poly-zero))
78 (c (funcall (ring-unit ring)))
79 (a (make-list (length fl) :initial-element (make-poly-zero)))
80 (division-count 0)
81 (p f))
82 ((poly-zerop p)
83 (debug-cgb "~&~3T~d reduction~:p" division-count)
84 (when (poly-zerop r) (debug-cgb " ---> 0"))
85 ;; We obtained the terms in reverse order, must fix that
86 (setf a (mapcar #'poly-nreverse a)
87 r (poly-nreverse r))
88 (values a r c division-count))
89 (declare (fixnum division-count))
90 (do ((fl fl (rest fl)) ;scan list of divisors
91 (b a (rest b)))
92 ((cond
93 ((endp fl) ;no division occurred
94 (push (poly-lt p) (poly-termlist r)) ;move lt(p) to remainder
95 (setf (poly-sugar r) (max (poly-sugar r) (term-sugar (poly-lt p))))
96 (pop (poly-termlist p)) ;remove lt(p) from p
97 t)
98 ((monom-divides-p (poly-lm (car fl)) (poly-lm p)) ;division occurred
99 (incf division-count)
100 (multiple-value-bind (gcd c1 c2)
101 (funcall (ring-ezgcd ring) (poly-lc (car fl)) (poly-lc p))
102 (declare (ignore gcd))
103 (let ((m (monom-div (poly-lm p) (poly-lm (car fl)))))
104 ;; Multiply the equation c*f=sum ai*fi+r+p by c1.
105 (mapl #'(lambda (x)
106 (setf (car x) (scalar-times-poly ring c1 (car x))))
107 a)
108 (setf r (scalar-times-poly ring c1 r)
109 c (funcall (ring-mul ring) c c1)
110 p (grobner-op ring-and-order c2 c1 m p (car fl)))
111 (push (make-term m c2) (poly-termlist (car b))))
112 t)))))))
113
114(defun poly-exact-divide (ring f g)
115 "Divide a polynomial F by another polynomial G. Assume that exact division
116with no remainder is possible. Returns the quotient."
117 (declare (type poly f g))
118 (multiple-value-bind (quot rem coeff division-count)
119 (poly-pseudo-divide ring f (list g))
120 (declare (ignore division-count coeff)
121 (list quot)
122 (type poly rem)
123 (type fixnum division-count))
124 (unless (poly-zerop rem) (error "Exact division failed."))
125 (car quot)))
126
127
128
129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
130;;
131;; An implementation of the normal form
132;;
133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
134
135(defun normal-form-step (ring-and-order fl p r c division-count
136 &aux
137 (ring (ro-ring ring-and-order))
138 (g (find (poly-lm p) fl
139 :test #'monom-divisible-by-p
140 :key #'poly-lm)))
141 (cond
142 (g ;division possible
143 (incf division-count)
144 (multiple-value-bind (gcd cg cp)
145 (funcall (ring-ezgcd ring) (poly-lc g) (poly-lc p))
146 (declare (ignore gcd))
147 (let ((m (monom-div (poly-lm p) (poly-lm g))))
148 ;; Multiply the equation c*f=sum ai*fi+r+p by cg.
149 (setf r (scalar-times-poly ring cg r)
150 c (funcall (ring-mul ring) c cg)
151 ;; p := cg*p-cp*m*g
152 p (grobner-op ring-and-order cp cg m p g))))
153 (debug-cgb "/"))
154 (t ;no division possible
155 (push (poly-lt p) (poly-termlist r)) ;move lt(p) to remainder
156 (setf (poly-sugar r) (max (poly-sugar r) (term-sugar (poly-lt p))))
157 (pop (poly-termlist p)) ;remove lt(p) from p
158 (debug-cgb "+")))
159 (values p r c division-count))
160
161;; Merge it sometime with poly-pseudo-divide
162(defun normal-form (ring-and-order f fl
163 &optional
164 (top-reduction-only $poly_top_reduction_only)
165 (ring (ro-ring ring-and-order)))
166 ;; Loop invariant: c*f0=sum ai*fi+r+f, where f0 is the initial value of f
167 #+grobner-check(when (null fl) (warn "normal-form: empty divisor list."))
168 (do ((r (make-poly-zero))
169 (c (funcall (ring-unit ring)))
170 (division-count 0))
171 ((or (poly-zerop f)
172 ;;(endp fl)
173 (and top-reduction-only (not (poly-zerop r))))
174 (progn
175 (debug-cgb "~&~3T~d reduction~:p" division-count)
176 (when (poly-zerop r)
177 (debug-cgb " ---> 0")))
178 (setf (poly-termlist f) (nreconc (poly-termlist r) (poly-termlist f)))
179 (values f c division-count))
180 (declare (fixnum division-count)
181 (type poly r))
182 (multiple-value-setq (f r c division-count)
183 (normal-form-step ring-and-order fl f r c division-count))))
184
185(defun buchberger-criterion (ring-and-order g)
186 "Returns T if G is a Grobner basis, by using the Buchberger
187criterion: for every two polynomials h1 and h2 in G the S-polynomial
188S(h1,h2) reduces to 0 modulo G."
189 (every
190 #'poly-zerop
191 (makelist (normal-form ring-and-order (spoly ring-and-order (elt g i) (elt g j)) g nil)
192 (i 0 (- (length g) 2))
193 (j (1+ i) (1- (length g))))))
194
195
196(defun poly-normalize (ring p &aux (c (poly-lc p)))
197 "Divide a polynomial by its leading coefficient. It assumes
198that the division is possible, which may not always be the
199case in rings which are not fields. The exact division operator
200is assumed to be provided by the RING structure."
201 (mapc #'(lambda (term)
202 (setf (term-coeff term) (funcall (ring-div ring) (term-coeff term) c)))
203 (poly-termlist p))
204 p)
205
206(defun poly-normalize-list (ring plist)
207 "Divide every polynomial in a list PLIST by its leading coefficient. "
208 (mapcar #'(lambda (x) (poly-normalize ring x)) plist))
Note: See TracBrowser for help on using the repository browser.