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/polynomial.lisp@ 4427

Last change on this file since 4427 was 4427, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 23.2 KB
Line 
1;;----------------------------------------------------------------
2;;; -*- Mode: Lisp -*-
3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4;;;
5;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
6;;;
7;;; This program is free software; you can redistribute it and/or modify
8;;; it under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 2 of the License, or
10;;; (at your option) any later version.
11;;;
12;;; This program is distributed in the hope that it will be useful,
13;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with this program; if not, write to the Free Software
19;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20;;;
21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
22
23(defpackage "POLYNOMIAL"
24 (:use :cl :utils :monom :copy :ring)
25 (:export "POLY"
26 "POLY-DIMENSION"
27 "POLY-TERMLIST"
28 "POLY-TERM-ORDER"
29 "POLY-INSERT-TERM"
30 "SCALAR-MULTIPLY-BY"
31 "SCALAR-DIVIDE-BY"
32 "LEADING-TERM"
33 "LEADING-MONOMIAL"
34 "LEADING-COEFFICIENT"
35 "SECOND-LEADING-TERM"
36 "SECOND-LEADING-MONOMIAL"
37 "SECOND-LEADING-COEFFICIENT"
38 "ADD-TO"
39 "ADD"
40 "SUBTRACT-FROM"
41 "SUBTRACT"
42 "CHANGE-TERM-ORDER"
43 "STANDARD-EXTENSION"
44 "STANDARD-EXTENSION-1"
45 "STANDARD-SUM"
46 "SATURATION-EXTENSION"
47 "ALIST->POLY"
48 "->INFIX"
49 "UNIVERSAL-EZGCD"
50 "S-POLYNOMIAL"
51 "POLY-CONTENT"
52 "POLY-PRIMITIVE-PART"
53 "SATURATION-EXTENSION-1"
54 "MAKE-POLY-VARIABLE"
55 "MAKE-POLY-CONSTANT"
56 "MAKE-ZERO-FOR"
57 "MAKE-UNIT-FOR"
58 "UNIVERSAL-EXPT"
59 "UNIVERSAL-EQUALP"
60 "UNIVERSAL-ZEROP"
61 "POLY-LENGTH"
62 "POLY-REVERSE"
63 "POLY-P"
64 "+LIST-MARKER+"
65 "POLY-EVAL"
66 "*COEFFICIENT-CLASS*")
67 (:documentation "Implements polynomials. A polynomial is essentially
68a mapping of monomials of the same degree to coefficients. The
69momomials are ordered according to a monomial order."))
70
71(in-package :polynomial)
72
73(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
74
75(defclass poly (ring)
76 ((dimension :initform nil
77 :initarg :dimension
78 :accessor poly-dimension
79 :documentation "Shared dimension of all terms, the number of variables")
80 (termlist :initform nil :initarg :termlist :accessor poly-termlist
81 :documentation "List of terms.")
82 (order :initform #'lex> :initarg :order :accessor poly-term-order
83 :documentation "Monomial/term order."))
84 (:default-initargs :dimension nil :termlist nil :order #'lex>)
85 (:documentation "A polynomial with a list of terms TERMLIST, ordered
86according to term order ORDER, which defaults to LEX>."))
87
88(defmethod print-object ((self poly) stream)
89 (print-unreadable-object (self stream :type t :identity t)
90 (with-accessors ((dimension poly-dimension)
91 (termlist poly-termlist)
92 (order poly-term-order))
93 self
94 (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A"
95 dimension termlist order))))
96
97(defmethod copy-instance :around ((object poly) &rest initargs &key &allow-other-keys)
98 "Returns a deep copy of the polynomial POLY, by copying the TERMLIST and its terms."
99 (declare (ignore object initargs))
100 (let ((copy (call-next-method)))
101 (with-slots (termlist)
102 copy
103 (setf termlist (mapcar #'copy-instance termlist)))
104 copy))
105
106
107(defgeneric change-term-order (self other)
108 (:documentation "Change term order of SELF to the term order of OTHER.")
109 (:method ((self poly) (other poly))
110 (unless (eq (poly-term-order self) (poly-term-order other))
111 (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other))
112 (poly-term-order self) (poly-term-order other)))
113 self))
114
115(defgeneric poly-insert-term (self term)
116 (:documentation "Insert a term TERM into SELF before all other
117terms. Order is not enforced.")
118 (:method ((self poly) (term term))
119 (cond ((null (poly-dimension self))
120 (setf (poly-dimension self) (monom-dimension term)))
121 (t (assert (= (poly-dimension self) (monom-dimension term)))))
122 (push term (poly-termlist self))
123 self))
124
125(defgeneric poly-append-term (self term)
126 (:documentation "Append a term TERM to SELF after all other terms. Order is not enforced.")
127 (:method ((self poly) (term term))
128 (cond ((null (poly-dimension self))
129 (setf (poly-dimension self) (monom-dimension term)))
130 (t (assert (= (poly-dimension self) (monom-dimension term)))))
131 (setf (cdr (last (poly-termlist self))) (list term))
132 self))
133
134(defun alist->poly (alist &aux (poly (make-instance 'poly)))
135 "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...).
136It can be used to enter simple polynomials by hand, e.g the polynomial
137in two variables, X and Y, given in standard notation as:
138
139 3*X^2*Y^3+2*Y+7
140
141can be entered as
142(ALIST->POLY '(((2 3) . 3) ((0 1) . 2) ((0 0) . 7))).
143
144NOTE: The primary use is for low-level debugging of the package."
145 (dolist (x alist poly)
146 (poly-insert-term poly (make-instance 'term :exponents (car x) :coeff (cdr x)))))
147
148(defmethod update-instance-for-different-class :after ((old term) (new poly) &key)
149 "Converts OLD of class TERM to a NEW of class POLY, by making it into a 1-element TERMLIST."
150 (reinitialize-instance new
151 :dimension (monom-dimension old)
152 :termlist (list old)))
153
154(defmethod update-instance-for-different-class :after ((old monom) (new poly) &key)
155 "Converts OLD of class MONOM to a NEW of class POLY, by making it into a 1-element TERMLIST."
156 (reinitialize-instance new
157 :dimension (monom-dimension old)
158 :termlist (list (change-class old 'term))))
159
160(defmethod universal-equalp ((self poly) (other poly))
161 "Implements equality of polynomials."
162 (and (eql (poly-dimension self) (poly-dimension other))
163 (every #'universal-equalp (poly-termlist self) (poly-termlist other))
164 (eq (poly-term-order self) (poly-term-order other))))
165
166(defgeneric leading-term (object)
167 (:method ((self poly))
168 (car (poly-termlist self)))
169 (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
170
171(defgeneric second-leading-term (object)
172 (:method ((self poly))
173 (cadar (poly-termlist self)))
174 (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
175
176(defgeneric leading-monomial (object)
177 (:method ((self poly))
178 (change-class (copy-instance (leading-term self)) 'monom))
179 (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial."))
180
181(defgeneric second-leading-monomial (object)
182 (:method ((self poly))
183 (change-class (copy-instance (second-leading-term self)) 'monom))
184 (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial."))
185
186(defgeneric leading-coefficient (object)
187 (:method ((self poly))
188 (term-coeff (leading-term self)))
189 (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
190
191(defgeneric second-leading-coefficient (object)
192 (:method ((self poly))
193 (term-coeff (second-leading-term self)))
194 (:documentation "The second leading coefficient of a polynomial. It
195 signals error for a polynomial with at most one term."))
196
197(defmethod universal-zerop ((self poly))
198 "Return T iff SELF is a zero polynomial."
199 (null (poly-termlist self)))
200
201(defgeneric poly-length (self)
202 (:documentation "Return the number of terms.")
203 (:method ((self poly))
204 (length (poly-termlist self))))
205
206(defgeneric scalar-multiply-by (self other)
207 (:documentation "Multiply vector SELF by a scalar OTHER.")
208 (:method ((self poly) other)
209 (mapc #'(lambda (term) (setf (term-coeff term) (multiply-by (term-coeff term) other)))
210 (poly-termlist self))
211 self))
212
213(defgeneric scalar-divide-by (self other)
214 (:documentation "Divide vector SELF by a scalar OTHER.")
215 (:method ((self poly) other)
216 (mapc #'(lambda (term) (setf (term-coeff term) (divide-by (term-coeff term) other)))
217 (poly-termlist self))
218 self))
219
220(defmethod unary-inverse :before ((self poly))
221 "Checks invertibility of a polynomial SELF. To be invertable, the
222polynomial must be an invertible, constant polynomial."
223 (with-slots (termlist)
224 self
225 (assert (and (= (length termlist) 1) (zerop (total-degree (car termlist))))
226 nil
227 "To be invertible, the polynomial must have 1 term of total degree 0.")))
228
229(defmethod unary-inverse ((self poly))
230 "Returns the unary inverse of a polynomial SELF."
231 (with-slots (termlist)
232 self
233 (setf (car termlist) (unary-inverse (car termlist)))
234 self))
235
236(defmethod multiply-by ((self poly) (other monom))
237 "Multiply a polynomial SELF by OTHER."
238 (mapc #'(lambda (term) (multiply-by term other))
239 (poly-termlist self))
240 self)
241
242(defmethod multiply-by ((self poly) (other term))
243 "Multiply a polynomial SELF by OTHER."
244 (mapc #'(lambda (term) (multiply-by term other))
245 (poly-termlist self))
246 self)
247
248#|
249(defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
250 "Return an expression which will efficiently adds/subtracts two
251polynomials, P and Q. The addition/subtraction of coefficients is
252performed by calling ADD/SUBTRACT-FN. If UMINUS-FN is supplied, it is
253used to negate the coefficients of Q which do not have a corresponding
254coefficient in P. The code implements an efficient algorithm to add
255two polynomials represented as sorted lists of terms. The code
256destroys both arguments, reusing the terms to build the result."
257 `(macrolet ((lc (x) `(term-coeff (car ,x))))
258 (do ((p ,p)
259 (q ,q)
260 r)
261 ((or (endp p) (endp q))
262 ;; NOTE: R contains the result in reverse order. Can it
263 ;; be more efficient to produce the terms in correct order?
264 (unless (endp q)
265 ;; Upon subtraction, we must change the sign of
266 ;; all coefficients in q
267 ,@(when uminus-fn
268 `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q)))
269 (setf r (nreconc r q)))
270 (unless (endp p)
271 (setf r (nreconc r p)))
272 r)
273 (multiple-value-bind
274 (greater-p equal-p)
275 (funcall ,order-fn (car p) (car q))
276 (cond
277 (greater-p
278 (rotatef (cdr p) r p)
279 )
280 (equal-p
281 (let ((s (funcall ,add/subtract-fn (lc p) (lc q))))
282 (cond
283 ((universal-zerop s)
284 (setf p (cdr p))
285 )
286 (t
287 (setf (lc p) s)
288 (rotatef (cdr p) r p))))
289 (setf q (cdr q))
290 )
291 (t
292 ;;Negate the term of Q if UMINUS provided, signallig
293 ;;that we are doing subtraction
294 ,(when uminus-fn
295 `(setf (lc q) (funcall ,uminus-fn (lc q))))
296 (rotatef (cdr q) r q))))
297 ;;(format t "P:~A~%" p)
298 ;;(format t "Q:~A~%" q)
299 ;;(format t "R:~A~%" r)
300 )))
301|#
302
303(defun fast-add (p q order-fn add-fn)
304 "Add two polynomials, P and Q, represented as lists of terms.
305The operation is destructive to both polynomials, as the terms
306of both lists are combined into the result."
307 (macrolet ((lc (x) `(term-coeff (car ,x))))
308 (do (r)
309 ((or (endp p) (endp q))
310 ;; NOTE: R contains the result in reverse order. Can it
311 ;; be more efficient to produce the terms in correct order?
312 (unless (endp q)
313 (setf r (nreconc r q)))
314 (unless (endp p)
315 (setf r (nreconc r p)))
316 r)
317 (multiple-value-bind
318 (greater-p equal-p)
319 (funcall order-fn (car p) (car q))
320 (cond
321 (greater-p
322 (rotatef (cdr p) r p)
323 )
324 (equal-p
325 (let ((s (funcall add-fn (lc p) (lc q))))
326 (cond
327 ((universal-zerop s)
328 (setf p (cdr p))
329 )
330 (t
331 (setf (lc p) s)
332 (rotatef (cdr p) r p))))
333 (setf q (cdr q))
334 )
335 (t
336 (rotatef (cdr q) r q)))))))
337
338#|
339;; NOTE: The stuff below works, but may not be worth the trouble.
340
341(defmacro def-add/subtract-method (add/subtract-method-name
342 uminus-method-name
343 &optional
344 (doc-string nil doc-string-supplied-p))
345 "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM."
346 `(defmethod ,add/subtract-method-name ((self poly) (other poly))
347 ,@(when doc-string-supplied-p `(,doc-string))
348 ;; Ensure orders are compatible
349 (change-term-order other self)
350 (setf (poly-termlist self) (fast-add/subtract
351 (poly-termlist self) (poly-termlist other)
352 (poly-term-order self)
353 #',add/subtract-method-name
354 ,(when uminus-method-name `(function ,uminus-method-name))))
355 self))
356
357(eval-when (:load-toplevel :execute)
358
359 (def-add/subtract-method add-to nil
360 "Adds to polynomial SELF another polynomial OTHER.
361This operation destructively modifies both polynomials.
362The result is stored in SELF. This implementation does
363no consing, entirely reusing the sells of SELF and OTHER.")
364
365 (def-add/subtract-method subtract-from unary-minus
366 "Subtracts from polynomial SELF another polynomial OTHER.
367This operation destructively modifies both polynomials.
368The result is stored in SELF. This implementation does
369no consing, entirely reusing the sells of SELF and OTHER.")
370 )
371
372|#
373
374(defmethod unary-minus ((self poly))
375 "Destructively modifies the coefficients of the polynomial SELF,
376by changing their sign."
377 (mapc #'unary-minus (poly-termlist self))
378 self)
379
380(defun add-termlists (p q order-fn)
381 "Destructively adds two termlists P and Q ordered according to ORDER-FN."
382 (fast-add p q order-fn #'add-to))
383
384(defun subtract-termlists (p q order-fn)
385 "Destructively subtracts two termlists P and Q ordered according to ORDER-FN."
386 (setf q (mapc #'unary-minus q))
387 (add-termlists p q order-fn))
388
389(defmethod add-to ((self poly) (other poly) &aux (other-copy (copy-instance other)))
390 "Adds to polynomial SELF another polynomial OTHER.
391This operation destructively modifies both polynomials.
392The result is stored in SELF. This implementation does
393no consing, entirely reusing the sells of SELF and OTHER."
394 (change-term-order other-copy self)
395 (setf (poly-termlist self) (add-termlists
396 (poly-termlist self) (poly-termlist other-copy)
397 (poly-term-order self)))
398 self)
399
400
401(defmethod subtract-from ((self poly) (other poly) &aux (other-copy (copy-instance other)))
402 "Subtracts from polynomial SELF another polynomial OTHER.
403This operation destructively modifies both polynomials.
404The result is stored in SELF. This implementation does
405no consing, entirely reusing the sells of SELF and OTHER."
406 (change-term-order other-copy self)
407 (setf (poly-termlist self) (subtract-termlists
408 (poly-termlist self) (poly-termlist other-copy)
409 (poly-term-order self)))
410 self)
411
412
413(defmethod add-to ((self poly) (other term) &aux (other-copy (copy-instance other)))
414 "Adds to a polynomial SELF a term OTHER. The term OTHER is not
415modified."
416 (add-to self (change-class other-copy 'poly)))
417
418(defmethod subtract-from ((self poly) (other term) &aux (other-copy (copy-instance other)))
419 "Subtracts from a polynomial SELF a term OTHER. The term OTHER is not
420modified."
421 (subtract-from self (change-class other-copy 'poly)))
422
423
424(defmacro multiply-term-by-termlist-dropping-zeros (term termlist
425 &optional (reverse-arg-order-P nil))
426 "Multiplies term TERM by a list of term, TERMLIST.
427Takes into accound divisors of zero in the ring, by
428deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P
429is T, change the order of arguments; this may be important
430if we extend the package to non-commutative rings."
431 `(mapcan #'(lambda (other-term)
432 (let ((prod (multiply
433 ,@(cond
434 (reverse-arg-order-p
435 `(other-term ,term))
436 (t
437 `(,term other-term))))))
438 (cond
439 ((universal-zerop prod) nil)
440 (t (list prod)))))
441 ,termlist))
442
443(defun multiply-termlists (p q order-fn)
444 "A version of polynomial multiplication, operating
445directly on termlists."
446 (cond
447 ((or (endp p) (endp q))
448 ;;p or q is 0 (represented by NIL)
449 nil)
450 ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q
451 ((endp (cdr p))
452 (multiply-term-by-termlist-dropping-zeros (car p) q))
453 ((endp (cdr q))
454 (multiply-term-by-termlist-dropping-zeros (car q) p t))
455 (t
456 (cons (multiply (car p) (car q))
457 (add-termlists
458 (multiply-term-by-termlist-dropping-zeros (car p) (cdr q))
459 (multiply-termlists (cdr p) q order-fn)
460 order-fn)))))
461
462(defmethod multiply-by ((self poly) (other poly) &aux (other-copy (copy-instance other)))
463 (change-term-order other-copy self)
464 (setf (poly-termlist self) (multiply-termlists (poly-termlist self)
465 (poly-termlist other-copy)
466 (poly-term-order self)))
467 self)
468
469(defmethod left-tensor-product-by ((self poly) (other monom))
470 (setf (poly-termlist self)
471 (mapcan #'(lambda (term)
472 (let ((prod (left-tensor-product-by term other)))
473 (cond
474 ((universal-zerop prod) nil)
475 (t (list prod)))))
476 (poly-termlist self)))
477 (incf (poly-dimension self) (monom-dimension other))
478 self)
479
480(defmethod right-tensor-product-by ((self poly) (other monom))
481 (setf (poly-termlist self)
482 (mapcan #'(lambda (term)
483 (let ((prod (right-tensor-product-by term other)))
484 (cond
485 ((universal-zerop prod) nil)
486 (t (list prod)))))
487 (poly-termlist self)))
488 (incf (poly-dimension self) (monom-dimension other))
489 self)
490
491
492(defun standard-extension (plist &aux (k (length plist)) (i 0))
493 "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK]
494is a list of polynomials. Destructively modifies PLIST elements."
495 (mapc #'(lambda (poly)
496 (left-tensor-product-by
497 poly
498 (prog1
499 (make-monom-variable k i)
500 (incf i))))
501 plist))
502
503(defun standard-extension-1 (plist
504 &aux
505 (plist (standard-extension plist))
506 (nvars (poly-dimension (car plist))))
507 "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK].
508Firstly, new K variables U1, U2, ..., UK, are inserted into each
509polynomial. Subsequently, P1, P2, ..., PK are destructively modified
510tantamount to replacing PI with UI*PI-1. It assumes that all
511polynomials have the same dimension, and only the first polynomial
512is examined to determine this dimension."
513 ;; Implementation note: we use STANDARD-EXTENSION and then subtract
514 ;; 1 from each polynomial; since UI*PI has no constant term,
515 ;; we just need to append the constant term at the end
516 ;; of each termlist.
517 (flet ((subtract-1 (p)
518 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
519 (setf plist (mapc #'subtract-1 plist)))
520 plist)
521
522
523(defun standard-sum (plist
524 &aux
525 (plist (standard-extension plist))
526 (nvars (poly-dimension (car plist))))
527 "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK].
528Firstly, new K variables, U1, U2, ..., UK, are inserted into each
529polynomial. Subsequently, P1, P2, ..., PK are destructively modified
530tantamount to replacing PI with UI*PI, and the resulting polynomials
531are added. Finally, 1 is subtracted. It should be noted that the term
532order is not modified, which is equivalent to using a lexicographic
533order on the first K variables."
534 (flet ((subtract-1 (p)
535 (poly-append-term p (make-instance 'term :dimension nvars :coeff -1))))
536 (subtract-1
537 (make-instance
538 'poly
539 :termlist (apply #'nconc (mapcar #'poly-termlist plist))))))
540
541(defgeneric s-polynomial (object1 object2)
542 (:documentation "Yields the S-polynomial of OBJECT1 and OBJECT2.")
543 (:method ((f poly) (g poly))
544 (let* ((lcm (universal-lcm (leading-monomial f) (leading-monomial g)))
545 (mf (divide lcm (leading-monomial f)))
546 (mg (divide lcm (leading-monomial g))))
547 (multiple-value-bind (c cf cg)
548 (universal-ezgcd (leading-coefficient f) (leading-coefficient g))
549 (declare (ignore c))
550 (subtract
551 (multiply f (change-class mf 'term :coeff cg))
552 (multiply g (change-class mg 'term :coeff cf)))))))
553
554(defgeneric poly-content (object)
555 (:documentation "Greatest common divisor of the coefficients of the polynomial object OBJECT.")
556 (:method ((self poly))
557 (reduce #'universal-gcd
558 (mapcar #'term-coeff (rest (poly-termlist self)))
559 :initial-value (leading-coefficient self))))
560
561(defun poly-primitive-part (self)
562 "Divide polynomial SELF by gcd of its
563coefficients. Return the resulting polynomial."
564 (scalar-divide-by self (poly-content self)))
565
566(defun poly-insert-variables (self k)
567 (left-tensor-product-by self (make-instance 'monom :dimension k)))
568
569(defun saturation-extension (f plist &aux (k (length plist)))
570 "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where
571PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted
572as first K variables. It destructively modifies F and PLIST."
573 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
574 (standard-extension-1 plist)))
575
576(defun polysaturation-extension (f plist &aux (k (length plist)))
577 "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK]
578and F' is F with variables U1,U2,...,UK inserted as first K
579variables. It destructively modifies F and PLIST."
580 (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f)
581 (list (standard-sum plist))))
582
583(defun saturation-extension-1 (f p)
584 "Given family of polynomials F and a polynomial P, calculate [F',
585U*P-1], where F' is F with variable inserted as the first variable. It
586destructively modifies F and P."
587 (polysaturation-extension f (list p)))
588
589(defmethod multiply-by ((self poly) (other ring))
590 (scalar-multiply-by self other))
591
592(defun make-poly-variable (nvars pos &optional (power 1))
593 (change-class (make-monom-variable nvars pos power) 'poly))
594
595(defun make-poly-constant (nvars coeff)
596 (change-class (make-term-constant nvars coeff) 'poly))
597
598(defgeneric universal-expt (x y)
599 (:documentation "Raises X to power Y.")
600 (:method ((x number) (y integer)) (expt x y))
601 (:method ((x t) (y integer))
602 (declare (type fixnum y))
603 (cond
604 ((minusp y) (error "universal-expt: Negative exponent."))
605 ((universal-zerop x) (if (zerop y) 1))
606 (t
607 (do ((k 1 (ash k 1))
608 (q x (multiply q q)) ;keep squaring
609 (p (make-unit-for x) (if (not (zerop (logand k y))) (multiply p q) p)))
610 ((> k y) p)
611 (declare (fixnum k)))))))
612
613(defgeneric poly-p (object)
614 (:documentation "Checks if an object is a polynomial.")
615 (:method ((self poly)) t)
616 (:method ((self t)) nil))
617
618(defmethod ->sexp :before ((self poly) &optional vars)
619 "Ensures that the number of variables in VARS maches the polynomial dimension of the
620polynomial SELF."
621 (with-slots (dimension)
622 self
623 (assert (= (length vars) dimension)
624 nil
625 "Number of variables ~S does not match the dimension ~S"
626 vars dimension)))
627
628(defmethod ->sexp ((self poly) &optional vars)
629 "Converts a polynomial SELF to a sexp."
630 (let ((m (mapcar #'(lambda (trm) (->sexp trm vars))
631 (poly-termlist self))))
632 (cond ((endp m) 0)
633 ((endp (cdr m)) (car m))
634 (t (cons '+ m)))))
635
636(defconstant +list-marker+ :[
637 "A sexp with this head is considered a list of polynomials.")
638
639(defmethod ->sexp ((self cons) &optional vars)
640 (assert (eql (car self) +list-marker+))
641 (cons +list-marker+ (mapcar #'(lambda (p) (->sexp p vars)) (cdr self))))
642
643(defmethod make-zero-for ((self poly))
644 (make-instance 'poly :dimension (poly-dimension self)))
645
646(defmethod make-unit-for ((self poly))
647 (make-poly-constant (poly-dimension self) 1))
648
649(defgeneric poly-reverse (self)
650 (:documentation "Reverse the order of terms in a polynomial SELF.")
651 (:method ((self poly))
652 (with-slots (termlist)
653 self
654 (setf termlist (nreverse termlist)))
655 self))
656
657
658
Note: See TracBrowser for help on using the repository browser.