| [3400] | 1 | ;;---------------------------------------------------------------- | 
|---|
| [1201] | 2 | ;;; -*-  Mode: Lisp -*- | 
|---|
| [77] | 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 |  | 
|---|
| [431] | 23 | (defpackage "POLYNOMIAL" | 
|---|
| [3643] | 24 | (:use :cl :utils :monom :copy) | 
|---|
| [2596] | 25 | (:export "POLY" | 
|---|
| [3270] | 26 | "POLY-DIMENSION" | 
|---|
| [2596] | 27 | "POLY-TERMLIST" | 
|---|
| [3016] | 28 | "POLY-TERM-ORDER" | 
|---|
| [3509] | 29 | "POLY-INSERT-TERM" | 
|---|
| [3690] | 30 | "SCALAR-MULTIPLY-BY" | 
|---|
|  | 31 | "SCALAR-DIVIDE-BY" | 
|---|
| [3642] | 32 | "LEADING-TERM" | 
|---|
| [3657] | 33 | "LEADING-MONOMIAL" | 
|---|
| [3642] | 34 | "LEADING-COEFFICIENT" | 
|---|
| [3657] | 35 | "SECOND-LEADING-TERM" | 
|---|
|  | 36 | "SECOND-LEADING-MONOMIAL" | 
|---|
|  | 37 | "SECOND-LEADING-COEFFICIENT" | 
|---|
| [3642] | 38 | "ADD-TO" | 
|---|
| [3646] | 39 | "ADD" | 
|---|
| [3642] | 40 | "SUBTRACT-FROM" | 
|---|
| [3646] | 41 | "SUBTRACT" | 
|---|
| [3071] | 42 | "CHANGE-TERM-ORDER" | 
|---|
| [3099] | 43 | "STANDARD-EXTENSION" | 
|---|
| [3101] | 44 | "STANDARD-EXTENSION-1" | 
|---|
| [3109] | 45 | "STANDARD-SUM" | 
|---|
| [3094] | 46 | "SATURATION-EXTENSION" | 
|---|
| [3655] | 47 | "ALIST->POLY" | 
|---|
| [3852] | 48 | "->INFIX" | 
|---|
| [3655] | 49 | "UNIVERSAL-EZGCD" | 
|---|
| [3678] | 50 | "S-POLYNOMIAL" | 
|---|
| [3686] | 51 | "POLY-CONTENT" | 
|---|
| [3692] | 52 | "POLY-PRIMITIVE-PART" | 
|---|
| [3714] | 53 | "SATURATION-EXTENSION-1" | 
|---|
| [3737] | 54 | "MAKE-POLY-VARIABLE" | 
|---|
| [3821] | 55 | "MAKE-POLY-CONSTANT" | 
|---|
| [3778] | 56 | "UNIVERSAL-EXPT" | 
|---|
| [3969] | 57 | "UNIVERSAL-EQUALP" | 
|---|
|  | 58 | "POLY-LENGTH" | 
|---|
| [3900] | 59 | "POLY-P" | 
|---|
| [3901] | 60 | "+LIST-MARKER+" | 
|---|
| [3900] | 61 | "POLY-EVAL") | 
|---|
| [3489] | 62 | (:documentation "Implements polynomials. A polynomial is essentially | 
|---|
|  | 63 | a mapping of monomials of the same degree to coefficients. The | 
|---|
|  | 64 | momomials are ordered according to a monomial order.")) | 
|---|
| [143] | 65 |  | 
|---|
| [431] | 66 | (in-package :polynomial) | 
|---|
|  | 67 |  | 
|---|
| [1927] | 68 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0))) | 
|---|
| [52] | 69 |  | 
|---|
| [2442] | 70 | (defclass poly () | 
|---|
| [3253] | 71 | ((dimension :initform nil | 
|---|
| [3250] | 72 | :initarg :dimension | 
|---|
|  | 73 | :accessor poly-dimension | 
|---|
| [3242] | 74 | :documentation "Shared dimension of all terms, the number of variables") | 
|---|
| [3250] | 75 | (termlist :initform nil :initarg :termlist :accessor poly-termlist | 
|---|
| [3619] | 76 | :documentation "List of terms.") | 
|---|
| [3250] | 77 | (order :initform #'lex> :initarg :order :accessor poly-term-order | 
|---|
| [2697] | 78 | :documentation "Monomial/term order.")) | 
|---|
| [3262] | 79 | (:default-initargs :dimension nil :termlist nil :order #'lex>) | 
|---|
| [2695] | 80 | (:documentation "A polynomial with a list of terms TERMLIST, ordered | 
|---|
| [2696] | 81 | according to term order ORDER, which defaults to LEX>.")) | 
|---|
| [2442] | 82 |  | 
|---|
| [2471] | 83 | (defmethod print-object ((self poly) stream) | 
|---|
| [3241] | 84 | (print-unreadable-object (self stream :type t :identity t) | 
|---|
| [3243] | 85 | (with-accessors ((dimension poly-dimension) | 
|---|
|  | 86 | (termlist poly-termlist) | 
|---|
|  | 87 | (order poly-term-order)) | 
|---|
| [3237] | 88 | self | 
|---|
| [3244] | 89 | (format stream "DIMENSION=~A TERMLIST=~A ORDER=~A" | 
|---|
|  | 90 | dimension termlist order)))) | 
|---|
| [2469] | 91 |  | 
|---|
| [3015] | 92 | (defgeneric change-term-order (self other) | 
|---|
| [3012] | 93 | (:documentation "Change term order of SELF to the term order of OTHER.") | 
|---|
| [3010] | 94 | (:method ((self poly) (other poly)) | 
|---|
|  | 95 | (unless (eq (poly-term-order self) (poly-term-order other)) | 
|---|
| [3620] | 96 | (setf (poly-termlist self) (sort (poly-termlist self) (poly-term-order other)) | 
|---|
| [3010] | 97 | (poly-term-order self) (poly-term-order other))) | 
|---|
| [3012] | 98 | self)) | 
|---|
| [3010] | 99 |  | 
|---|
| [3621] | 100 | (defgeneric poly-insert-term (self term) | 
|---|
| [3622] | 101 | (:documentation "Insert a term TERM into SELF before all other | 
|---|
| [3621] | 102 | terms. Order is not enforced.") | 
|---|
|  | 103 | (:method ((self poly) (term term)) | 
|---|
| [3510] | 104 | (cond ((null (poly-dimension self)) | 
|---|
| [3621] | 105 | (setf (poly-dimension self) (monom-dimension term))) | 
|---|
|  | 106 | (t (assert (= (poly-dimension self) (monom-dimension term))))) | 
|---|
|  | 107 | (push term (poly-termlist self)) | 
|---|
| [3510] | 108 | self)) | 
|---|
|  | 109 |  | 
|---|
| [3622] | 110 | (defgeneric poly-append-term (self term) | 
|---|
|  | 111 | (:documentation "Append a term TERM to SELF after all other terms. Order is not enforced.") | 
|---|
|  | 112 | (:method ((self poly) (term term)) | 
|---|
| [3510] | 113 | (cond ((null (poly-dimension self)) | 
|---|
| [3622] | 114 | (setf (poly-dimension self) (monom-dimension term))) | 
|---|
|  | 115 | (t (assert (= (poly-dimension self) (monom-dimension term))))) | 
|---|
|  | 116 | (setf (cdr (last (poly-termlist self))) (list term)) | 
|---|
| [3510] | 117 | self)) | 
|---|
|  | 118 |  | 
|---|
| [3095] | 119 | (defun alist->poly (alist &aux (poly (make-instance 'poly))) | 
|---|
| [3126] | 120 | "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...). | 
|---|
|  | 121 | It can be used to enter simple polynomials by hand, e.g the polynomial | 
|---|
|  | 122 | in two variables, X and Y, given in standard notation as: | 
|---|
|  | 123 |  | 
|---|
|  | 124 | 3*X^2*Y^3+2*Y+7 | 
|---|
|  | 125 |  | 
|---|
|  | 126 | can be entered as | 
|---|
|  | 127 | (ALIST->POLY '(((2 3) . 3) ((0 1) . 2) ((0 0) . 7))). | 
|---|
|  | 128 |  | 
|---|
|  | 129 | NOTE: The primary use is for low-level debugging of the package." | 
|---|
| [3099] | 130 | (dolist (x alist poly) | 
|---|
| [3705] | 131 | (poly-insert-term poly (make-instance 'term :exponents (car x) :coeff (cdr x))))) | 
|---|
| [3092] | 132 |  | 
|---|
| [3877] | 133 | (defmethod update-instance-for-different-class :after ((old term) (new poly) &key) | 
|---|
| [3786] | 134 | "Converts OLD of class TERM to a NEW of class POLY, by making it into a 1-element TERMLIST." | 
|---|
| [3401] | 135 | (reinitialize-instance new | 
|---|
|  | 136 | :dimension (monom-dimension old) | 
|---|
| [3786] | 137 | :termlist (list old))) | 
|---|
| [3796] | 138 |  | 
|---|
| [3877] | 139 | (defmethod update-instance-for-different-class :after ((old monom) (new poly) &key) | 
|---|
| [3796] | 140 | "Converts OLD of class MONOM to a NEW of class POLY, by making it into a 1-element TERMLIST." | 
|---|
|  | 141 | (reinitialize-instance new | 
|---|
|  | 142 | :dimension (monom-dimension old) | 
|---|
| [3797] | 143 | :termlist (list (change-class old 'term)))) | 
|---|
| [3403] | 144 |  | 
|---|
| [3624] | 145 | (defmethod universal-equalp ((self poly) (other poly)) | 
|---|
|  | 146 | "Implements equality of polynomials." | 
|---|
|  | 147 | (and (eql (poly-dimension self) (poly-dimension other)) | 
|---|
|  | 148 | (every #'universal-equalp (poly-termlist self) (poly-termlist other)) | 
|---|
|  | 149 | (eq (poly-term-order self) (poly-term-order other)))) | 
|---|
| [2650] | 150 |  | 
|---|
| [3624] | 151 | (defgeneric leading-term (object) | 
|---|
| [2442] | 152 | (:method ((self poly)) | 
|---|
| [2525] | 153 | (car (poly-termlist self))) | 
|---|
|  | 154 | (:documentation "The leading term of a polynomial, or NIL for zero polynomial.")) | 
|---|
| [52] | 155 |  | 
|---|
| [3625] | 156 | (defgeneric second-leading-term (object) | 
|---|
| [2442] | 157 | (:method ((self poly)) | 
|---|
| [2525] | 158 | (cadar (poly-termlist self))) | 
|---|
|  | 159 | (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term.")) | 
|---|
| [52] | 160 |  | 
|---|
| [3656] | 161 | (defgeneric leading-monomial (object) | 
|---|
|  | 162 | (:method ((self poly)) | 
|---|
|  | 163 | (change-class (copy-instance (leading-term self)) 'monom)) | 
|---|
|  | 164 | (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial.")) | 
|---|
|  | 165 |  | 
|---|
|  | 166 | (defgeneric second-leading-monomial (object) | 
|---|
|  | 167 | (:method ((self poly)) | 
|---|
|  | 168 | (change-class (copy-instance (second-leading-term self)) 'monom)) | 
|---|
|  | 169 | (:documentation "The leading monomial of a polynomial, or NIL for zero polynomial.")) | 
|---|
|  | 170 |  | 
|---|
| [3625] | 171 | (defgeneric leading-coefficient (object) | 
|---|
| [2442] | 172 | (:method ((self poly)) | 
|---|
| [3642] | 173 | (term-coeff (leading-term self))) | 
|---|
| [2545] | 174 | (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial.")) | 
|---|
| [52] | 175 |  | 
|---|
| [2442] | 176 | (defgeneric second-leading-coefficient (object) | 
|---|
|  | 177 | (:method ((self poly)) | 
|---|
| [3645] | 178 | (term-coeff (second-leading-term self))) | 
|---|
| [2906] | 179 | (:documentation "The second leading coefficient of a polynomial. It | 
|---|
|  | 180 | signals error for a polynomial with at most one term.")) | 
|---|
| [52] | 181 |  | 
|---|
| [3629] | 182 | (defmethod universal-zerop ((self poly)) | 
|---|
|  | 183 | "Return T iff SELF is a zero polynomial." | 
|---|
| [3639] | 184 | (null (poly-termlist self))) | 
|---|
| [52] | 185 |  | 
|---|
| [3518] | 186 | (defgeneric poly-length (self) | 
|---|
| [3630] | 187 | (:documentation "Return the number of terms.") | 
|---|
| [3518] | 188 | (:method ((self poly)) | 
|---|
|  | 189 | (length (poly-termlist self)))) | 
|---|
| [52] | 190 |  | 
|---|
| [3689] | 191 | (defgeneric scalar-multiply-by (self other) | 
|---|
|  | 192 | (:documentation "Multiply vector SELF by a scalar OTHER.") | 
|---|
|  | 193 | (:method ((self poly) other) | 
|---|
|  | 194 | (mapc #'(lambda (term) (setf (term-coeff term) (multiply (term-coeff term) other))) | 
|---|
|  | 195 | (poly-termlist self)) | 
|---|
|  | 196 | self)) | 
|---|
|  | 197 |  | 
|---|
|  | 198 | (defgeneric scalar-divide-by (self other) | 
|---|
|  | 199 | (:documentation "Divide vector SELF by a scalar OTHER.") | 
|---|
|  | 200 | (:method ((self poly) other) | 
|---|
|  | 201 | (mapc #'(lambda (term) (setf (term-coeff term) (divide (term-coeff term) other))) | 
|---|
|  | 202 | (poly-termlist self)) | 
|---|
|  | 203 | self)) | 
|---|
|  | 204 |  | 
|---|
| [4034] | 205 | (defmethod unary-inverse :before ((self poly)) | 
|---|
| [4035] | 206 | "Checks invertibility of a polynomial SELF. To be invertable, the | 
|---|
|  | 207 | polynomial must be an invertible, constant polynomial." | 
|---|
| [4034] | 208 | (with-slots (termlist) | 
|---|
| [4035] | 209 | self | 
|---|
|  | 210 | (assert (and (= (length termlist) 1) (zerop (total-degree (car termlist)))) | 
|---|
|  | 211 | nil | 
|---|
|  | 212 | "To be invertible, the polynomial must have 1 term of total degree 0."))) | 
|---|
| [4034] | 213 |  | 
|---|
|  | 214 | (defmethod unary-inverse ((self poly)) | 
|---|
| [4035] | 215 | "Returns the unary inverse of a polynomial SELF." | 
|---|
| [4034] | 216 | (with-slots (termlist) | 
|---|
|  | 217 | self | 
|---|
| [4035] | 218 | (setf (car termlist) (unary-inverse (car termlist))) | 
|---|
|  | 219 | self)) | 
|---|
| [4034] | 220 |  | 
|---|
| [3663] | 221 | (defmethod multiply-by ((self poly) (other monom)) | 
|---|
| [3630] | 222 | "Multiply a polynomial SELF by OTHER." | 
|---|
|  | 223 | (mapc #'(lambda (term) (multiply-by term other)) | 
|---|
|  | 224 | (poly-termlist self)) | 
|---|
|  | 225 | self) | 
|---|
| [2469] | 226 |  | 
|---|
| [3672] | 227 | (defmethod multiply-by ((self poly) (other term)) | 
|---|
|  | 228 | "Multiply a polynomial SELF by OTHER." | 
|---|
|  | 229 | (mapc #'(lambda (term) (multiply-by term other)) | 
|---|
|  | 230 | (poly-termlist self)) | 
|---|
|  | 231 | self) | 
|---|
|  | 232 |  | 
|---|
| [2761] | 233 | (defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn) | 
|---|
| [2755] | 234 | "Return an expression which will efficiently adds/subtracts two | 
|---|
|  | 235 | polynomials, P and Q.  The addition/subtraction of coefficients is | 
|---|
| [3878] | 236 | performed by calling ADD/SUBTRACT-FN.  If UMINUS-FN is supplied, it is | 
|---|
|  | 237 | used to negate the coefficients of Q which do not have a corresponding | 
|---|
|  | 238 | coefficient in P. The code implements an efficient algorithm to add | 
|---|
|  | 239 | two polynomials represented as sorted lists of terms. The code | 
|---|
|  | 240 | destroys both arguments, reusing the terms to build the result." | 
|---|
| [3631] | 241 | `(macrolet ((lc (x) `(term-coeff (car ,x)))) | 
|---|
| [2742] | 242 | (do ((p ,p) | 
|---|
|  | 243 | (q ,q) | 
|---|
|  | 244 | r) | 
|---|
|  | 245 | ((or (endp p) (endp q)) | 
|---|
|  | 246 | ;; NOTE: R contains the result in reverse order. Can it | 
|---|
|  | 247 | ;; be more efficient to produce the terms in correct order? | 
|---|
| [2774] | 248 | (unless (endp q) | 
|---|
| [2776] | 249 | ;; Upon subtraction, we must change the sign of | 
|---|
|  | 250 | ;; all coefficients in q | 
|---|
| [2774] | 251 | ,@(when uminus-fn | 
|---|
| [2775] | 252 | `((mapc #'(lambda (x) (setf x (funcall ,uminus-fn x))) q))) | 
|---|
| [2774] | 253 | (setf r (nreconc r q))) | 
|---|
| [3887] | 254 | (unless (endp p) | 
|---|
|  | 255 | (setf r (nreconc r p))) | 
|---|
|  | 256 | r) | 
|---|
| [2742] | 257 | (multiple-value-bind | 
|---|
|  | 258 | (greater-p equal-p) | 
|---|
| [3632] | 259 | (funcall ,order-fn (car p) (car q)) | 
|---|
| [2742] | 260 | (cond | 
|---|
|  | 261 | (greater-p | 
|---|
|  | 262 | (rotatef (cdr p) r p) | 
|---|
|  | 263 | ) | 
|---|
|  | 264 | (equal-p | 
|---|
| [2766] | 265 | (let ((s (funcall ,add/subtract-fn (lc p) (lc q)))) | 
|---|
| [2742] | 266 | (cond | 
|---|
| [3640] | 267 | ((universal-zerop s) | 
|---|
| [2742] | 268 | (setf p (cdr p)) | 
|---|
|  | 269 | ) | 
|---|
|  | 270 | (t | 
|---|
|  | 271 | (setf (lc p) s) | 
|---|
|  | 272 | (rotatef (cdr p) r p)))) | 
|---|
|  | 273 | (setf q (cdr q)) | 
|---|
|  | 274 | ) | 
|---|
|  | 275 | (t | 
|---|
| [2743] | 276 | ;;Negate the term of Q if UMINUS provided, signallig | 
|---|
|  | 277 | ;;that we are doing subtraction | 
|---|
| [2908] | 278 | ,(when uminus-fn | 
|---|
|  | 279 | `(setf (lc q) (funcall ,uminus-fn (lc q)))) | 
|---|
| [3887] | 280 | (rotatef (cdr q) r q)))) | 
|---|
|  | 281 | ;;(format t "P:~A~%" p) | 
|---|
|  | 282 | ;;(format t "Q:~A~%" q) | 
|---|
|  | 283 | ;;(format t "R:~A~%" r) | 
|---|
|  | 284 | ))) | 
|---|
| [2585] | 285 |  | 
|---|
| [2655] | 286 |  | 
|---|
| [3887] | 287 |  | 
|---|
| [3647] | 288 | (defgeneric add-to (self other) | 
|---|
|  | 289 | (:documentation "Add OTHER to SELF.") | 
|---|
|  | 290 | (:method ((self number) (other number)) | 
|---|
| [3819] | 291 | (+ self other)) | 
|---|
|  | 292 | (:method ((self poly) (other number)) | 
|---|
| [3865] | 293 | (add-to self (make-poly-constant (poly-dimension self) other))) | 
|---|
|  | 294 | (:method ((self number) (other poly)) | 
|---|
|  | 295 | (add-to (make-poly-constant (poly-dimension other) self) other))) | 
|---|
| [3819] | 296 |  | 
|---|
| [3647] | 297 |  | 
|---|
|  | 298 | (defgeneric subtract-from (self other) | 
|---|
| [3648] | 299 | (:documentation "Subtract OTHER from SELF.") | 
|---|
|  | 300 | (:method ((self number) (other number)) | 
|---|
| [3830] | 301 | (- self other)) | 
|---|
|  | 302 | (:method ((self poly) (other number)) | 
|---|
|  | 303 | (subtract-from self (make-poly-constant (poly-dimension self) other)))) | 
|---|
| [3647] | 304 |  | 
|---|
| [3969] | 305 |  | 
|---|
| [3884] | 306 | #| | 
|---|
| [3750] | 307 | (defmacro def-add/subtract-method (add/subtract-method-name | 
|---|
| [3749] | 308 | uminus-method-name | 
|---|
|  | 309 | &optional | 
|---|
|  | 310 | (doc-string nil doc-string-supplied-p)) | 
|---|
| [3647] | 311 | "This macro avoids code duplication for two similar operations: ADD-TO and SUBTRACT-FROM." | 
|---|
| [2749] | 312 | `(defmethod ,add/subtract-method-name ((self poly) (other poly)) | 
|---|
| [2615] | 313 | ,@(when doc-string-supplied-p `(,doc-string)) | 
|---|
| [2769] | 314 | ;; Ensure orders are compatible | 
|---|
| [3015] | 315 | (change-term-order other self) | 
|---|
| [2772] | 316 | (setf (poly-termlist self) (fast-add/subtract | 
|---|
|  | 317 | (poly-termlist self) (poly-termlist other) | 
|---|
|  | 318 | (poly-term-order self) | 
|---|
|  | 319 | #',add/subtract-method-name | 
|---|
|  | 320 | ,(when uminus-method-name `(function ,uminus-method-name)))) | 
|---|
| [3748] | 321 | self)) | 
|---|
| [3908] | 322 |  | 
|---|
|  | 323 | (eval-when (:load-toplevel :execute) | 
|---|
|  | 324 |  | 
|---|
|  | 325 | (def-add/subtract-method add-to nil | 
|---|
|  | 326 | "Adds to polynomial SELF another polynomial OTHER. | 
|---|
|  | 327 | This operation destructively modifies both polynomials. | 
|---|
|  | 328 | The result is stored in SELF. This implementation does | 
|---|
|  | 329 | no consing, entirely reusing the sells of SELF and OTHER.") | 
|---|
|  | 330 |  | 
|---|
|  | 331 | (def-add/subtract-method subtract-from unary-minus | 
|---|
|  | 332 | "Subtracts from polynomial SELF another polynomial OTHER. | 
|---|
|  | 333 | This operation destructively modifies both polynomials. | 
|---|
|  | 334 | The result is stored in SELF. This implementation does | 
|---|
|  | 335 | no consing, entirely reusing the sells of SELF and OTHER.") | 
|---|
|  | 336 | ) | 
|---|
|  | 337 |  | 
|---|
| [3884] | 338 | |# | 
|---|
| [2487] | 339 |  | 
|---|
| [3880] | 340 | (defmethod unary-minus ((self poly)) | 
|---|
|  | 341 | "Destructively modifies the coefficients of the polynomial SELF, | 
|---|
|  | 342 | by changing their sign." | 
|---|
|  | 343 | (mapc #'unary-minus (poly-termlist self)) | 
|---|
|  | 344 | self) | 
|---|
|  | 345 |  | 
|---|
|  | 346 | (defun add-termlists (p q order-fn) | 
|---|
|  | 347 | "Destructively adds two termlists P and Q ordered according to ORDER-FN." | 
|---|
|  | 348 | (fast-add/subtract p q order-fn #'add-to nil)) | 
|---|
|  | 349 |  | 
|---|
| [3881] | 350 | (defun subtract-termlists (p q order-fn) | 
|---|
| [3885] | 351 | "Destructively subtracts two termlists P and Q ordered according to ORDER-FN." | 
|---|
| [3882] | 352 | (fast-add/subtract p q order-fn #'subtract-from #'unary-minus)) | 
|---|
| [3881] | 353 |  | 
|---|
| [3879] | 354 | (defmethod add-to ((self poly) (other poly)) | 
|---|
|  | 355 | "Adds to polynomial SELF another polynomial OTHER. | 
|---|
| [2610] | 356 | This operation destructively modifies both polynomials. | 
|---|
|  | 357 | The result is stored in SELF. This implementation does | 
|---|
| [3879] | 358 | no consing, entirely reusing the sells of SELF and OTHER." | 
|---|
|  | 359 | (change-term-order other self) | 
|---|
|  | 360 | (setf (poly-termlist self) (add-termlists | 
|---|
|  | 361 | (poly-termlist self) (poly-termlist other) | 
|---|
| [3883] | 362 | (poly-term-order self))) | 
|---|
|  | 363 | self) | 
|---|
| [3879] | 364 |  | 
|---|
| [2609] | 365 |  | 
|---|
| [3879] | 366 | (defmethod subtract-from ((self poly) (other poly)) | 
|---|
| [2753] | 367 | "Subtracts from polynomial SELF another polynomial OTHER. | 
|---|
| [2610] | 368 | This operation destructively modifies both polynomials. | 
|---|
|  | 369 | The result is stored in SELF. This implementation does | 
|---|
| [3879] | 370 | no consing, entirely reusing the sells of SELF and OTHER." | 
|---|
|  | 371 | (change-term-order other self) | 
|---|
|  | 372 | (setf (poly-termlist self) (subtract-termlists | 
|---|
|  | 373 | (poly-termlist self) (poly-termlist other) | 
|---|
| [3883] | 374 | (poly-term-order self))) | 
|---|
|  | 375 | self) | 
|---|
| [2777] | 376 |  | 
|---|
| [2800] | 377 | (defmacro multiply-term-by-termlist-dropping-zeros (term termlist | 
|---|
| [2927] | 378 | &optional (reverse-arg-order-P nil)) | 
|---|
| [2799] | 379 | "Multiplies term TERM by a list of term, TERMLIST. | 
|---|
| [2792] | 380 | Takes into accound divisors of zero in the ring, by | 
|---|
| [2927] | 381 | deleting zero terms. Optionally, if REVERSE-ARG-ORDER-P | 
|---|
| [2928] | 382 | is T, change the order of arguments; this may be important | 
|---|
| [2927] | 383 | if we extend the package to non-commutative rings." | 
|---|
| [2800] | 384 | `(mapcan #'(lambda (other-term) | 
|---|
| [3633] | 385 | (let ((prod (multiply | 
|---|
| [2923] | 386 | ,@(cond | 
|---|
| [2930] | 387 | (reverse-arg-order-p | 
|---|
| [2925] | 388 | `(other-term ,term)) | 
|---|
|  | 389 | (t | 
|---|
|  | 390 | `(,term other-term)))))) | 
|---|
| [2800] | 391 | (cond | 
|---|
| [3633] | 392 | ((universal-zerop prod) nil) | 
|---|
| [2800] | 393 | (t (list prod))))) | 
|---|
|  | 394 | ,termlist)) | 
|---|
| [2790] | 395 |  | 
|---|
| [2796] | 396 | (defun multiply-termlists (p q order-fn) | 
|---|
| [3127] | 397 | "A version of polynomial multiplication, operating | 
|---|
|  | 398 | directly on termlists." | 
|---|
| [2787] | 399 | (cond | 
|---|
| [2917] | 400 | ((or (endp p) (endp q)) | 
|---|
|  | 401 | ;;p or q is 0 (represented by NIL) | 
|---|
|  | 402 | nil) | 
|---|
| [2789] | 403 | ;; If p= p0+p1 and q=q0+q1 then p*q=p0*q0+p0*q1+p1*q | 
|---|
| [2787] | 404 | ((endp (cdr p)) | 
|---|
| [2918] | 405 | (multiply-term-by-termlist-dropping-zeros (car p) q)) | 
|---|
|  | 406 | ((endp (cdr q)) | 
|---|
| [2919] | 407 | (multiply-term-by-termlist-dropping-zeros (car q) p t)) | 
|---|
|  | 408 | (t | 
|---|
| [3633] | 409 | (cons (multiply (car p) (car q)) | 
|---|
| [2949] | 410 | (add-termlists | 
|---|
|  | 411 | (multiply-term-by-termlist-dropping-zeros (car p) (cdr q)) | 
|---|
|  | 412 | (multiply-termlists (cdr p) q order-fn) | 
|---|
|  | 413 | order-fn))))) | 
|---|
| [2793] | 414 |  | 
|---|
| [2803] | 415 | (defmethod multiply-by ((self poly) (other poly)) | 
|---|
| [3014] | 416 | (change-term-order other self) | 
|---|
| [2803] | 417 | (setf (poly-termlist self) (multiply-termlists (poly-termlist self) | 
|---|
|  | 418 | (poly-termlist other) | 
|---|
|  | 419 | (poly-term-order self))) | 
|---|
|  | 420 | self) | 
|---|
|  | 421 |  | 
|---|
| [3804] | 422 | (defgeneric add-2 (object1 object2) | 
|---|
|  | 423 | (:documentation "Non-destructively add OBJECT1 to OBJECT2.") | 
|---|
| [3813] | 424 | (:method ((object1 t) (object2 t)) | 
|---|
| [3804] | 425 | (add-to (copy-instance object1) (copy-instance object2)))) | 
|---|
| [3374] | 426 |  | 
|---|
| [3803] | 427 | (defun add (&rest summands) | 
|---|
|  | 428 | "Non-destructively adds list SUMMANDS." | 
|---|
|  | 429 | (cond ((endp summands) 0) | 
|---|
| [3818] | 430 | (t (reduce #'add-2 summands)))) | 
|---|
| [3803] | 431 |  | 
|---|
| [3634] | 432 | (defun subtract (minuend  &rest subtrahends) | 
|---|
| [3427] | 433 | "Non-destructively subtract MINUEND and SUBTRAHENDS." | 
|---|
| [3851] | 434 | (cond ((endp subtrahends) (unary-minus minuend)) | 
|---|
|  | 435 | (t (subtract-from (copy-instance minuend) (reduce #'add subtrahends))))) | 
|---|
| [3374] | 436 |  | 
|---|
| [3062] | 437 | (defmethod left-tensor-product-by ((self poly) (other monom)) | 
|---|
|  | 438 | (setf (poly-termlist self) | 
|---|
|  | 439 | (mapcan #'(lambda (term) | 
|---|
|  | 440 | (let ((prod (left-tensor-product-by term other))) | 
|---|
|  | 441 | (cond | 
|---|
| [3640] | 442 | ((universal-zerop prod) nil) | 
|---|
| [3062] | 443 | (t (list prod))))) | 
|---|
|  | 444 | (poly-termlist self))) | 
|---|
| [3249] | 445 | (incf (poly-dimension self) (monom-dimension other)) | 
|---|
| [3062] | 446 | self) | 
|---|
| [3044] | 447 |  | 
|---|
| [3062] | 448 | (defmethod right-tensor-product-by ((self poly) (other monom)) | 
|---|
|  | 449 | (setf (poly-termlist self) | 
|---|
|  | 450 | (mapcan #'(lambda (term) | 
|---|
|  | 451 | (let ((prod (right-tensor-product-by term other))) | 
|---|
|  | 452 | (cond | 
|---|
| [3640] | 453 | ((universal-zerop prod) nil) | 
|---|
| [3062] | 454 | (t (list prod))))) | 
|---|
|  | 455 | (poly-termlist self))) | 
|---|
| [3249] | 456 | (incf (poly-dimension self) (monom-dimension other)) | 
|---|
| [3062] | 457 | self) | 
|---|
|  | 458 |  | 
|---|
|  | 459 |  | 
|---|
| [3084] | 460 | (defun standard-extension (plist &aux (k (length plist)) (i 0)) | 
|---|
| [2716] | 461 | "Calculate [U1*P1,U2*P2,...,UK*PK], where PLIST=[P1,P2,...,PK] | 
|---|
| [3060] | 462 | is a list of polynomials. Destructively modifies PLIST elements." | 
|---|
| [3061] | 463 | (mapc #'(lambda (poly) | 
|---|
| [3085] | 464 | (left-tensor-product-by | 
|---|
|  | 465 | poly | 
|---|
|  | 466 | (prog1 | 
|---|
|  | 467 | (make-monom-variable k i) | 
|---|
|  | 468 | (incf i)))) | 
|---|
| [3061] | 469 | plist)) | 
|---|
| [52] | 470 |  | 
|---|
| [3087] | 471 | (defun standard-extension-1 (plist | 
|---|
|  | 472 | &aux | 
|---|
| [3096] | 473 | (plist (standard-extension plist)) | 
|---|
| [3087] | 474 | (nvars (poly-dimension (car plist)))) | 
|---|
| [3081] | 475 | "Calculate [U1*P1-1,U2*P2-1,...,UK*PK-1], where PLIST=[P1,P2,...,PK]. | 
|---|
| [3087] | 476 | Firstly, new K variables U1, U2, ..., UK, are inserted into each | 
|---|
|  | 477 | polynomial.  Subsequently, P1, P2, ..., PK are destructively modified | 
|---|
| [3105] | 478 | tantamount to replacing PI with UI*PI-1. It assumes that all | 
|---|
| [3106] | 479 | polynomials have the same dimension, and only the first polynomial | 
|---|
|  | 480 | is examined to determine this dimension." | 
|---|
| [3089] | 481 | ;; Implementation note: we use STANDARD-EXTENSION and then subtract | 
|---|
|  | 482 | ;; 1 from each polynomial; since UI*PI has no constant term, | 
|---|
|  | 483 | ;; we just need to append the constant term at the end | 
|---|
|  | 484 | ;; of each termlist. | 
|---|
| [3064] | 485 | (flet ((subtract-1 (p) | 
|---|
| [3641] | 486 | (poly-append-term p (make-instance 'term :dimension nvars :coeff -1)))) | 
|---|
| [3083] | 487 | (setf plist (mapc #'subtract-1 plist))) | 
|---|
| [3077] | 488 | plist) | 
|---|
| [52] | 489 |  | 
|---|
|  | 490 |  | 
|---|
| [3107] | 491 | (defun standard-sum (plist | 
|---|
|  | 492 | &aux | 
|---|
|  | 493 | (plist (standard-extension plist)) | 
|---|
|  | 494 | (nvars (poly-dimension (car plist)))) | 
|---|
| [3087] | 495 | "Calculate the polynomial U1*P1+U2*P2+...+UK*PK-1, where PLIST=[P1,P2,...,PK]. | 
|---|
|  | 496 | Firstly, new K variables, U1, U2, ..., UK, are inserted into each | 
|---|
|  | 497 | polynomial.  Subsequently, P1, P2, ..., PK are destructively modified | 
|---|
|  | 498 | tantamount to replacing PI with UI*PI, and the resulting polynomials | 
|---|
| [3117] | 499 | are added. Finally, 1 is subtracted.  It should be noted that the term | 
|---|
|  | 500 | order is not modified, which is equivalent to using a lexicographic | 
|---|
|  | 501 | order on the first K variables." | 
|---|
| [3107] | 502 | (flet ((subtract-1 (p) | 
|---|
| [3641] | 503 | (poly-append-term p (make-instance 'term :dimension nvars :coeff -1)))) | 
|---|
| [3108] | 504 | (subtract-1 | 
|---|
|  | 505 | (make-instance | 
|---|
|  | 506 | 'poly | 
|---|
| [3115] | 507 | :termlist (apply #'nconc (mapcar #'poly-termlist plist)))))) | 
|---|
| [52] | 508 |  | 
|---|
| [3653] | 509 | (defgeneric universal-ezgcd (x y) | 
|---|
|  | 510 | (:documentation "Solves the diophantine system: X=C*X1, Y=C*X2, | 
|---|
|  | 511 | C=GCD(X,Y).  It returns C, X1 and Y1. The result may be obtained by | 
|---|
|  | 512 | the Euclidean algorithm.") | 
|---|
|  | 513 | (:method ((x integer) (y integer) | 
|---|
|  | 514 | &aux (c (gcd x y))) | 
|---|
|  | 515 | (values c (/ x c) (/ y c))) | 
|---|
|  | 516 | ) | 
|---|
|  | 517 |  | 
|---|
| [3655] | 518 | (defgeneric s-polynomial (object1 object2) | 
|---|
| [3651] | 519 | (:documentation "Yields the S-polynomial of OBJECT1 and OBJECT2.") | 
|---|
|  | 520 | (:method ((f poly) (g poly)) | 
|---|
|  | 521 | (let* ((lcm (universal-lcm (leading-monomial f) (leading-monomial g))) | 
|---|
|  | 522 | (mf (divide lcm (leading-monomial f))) | 
|---|
|  | 523 | (mg (divide lcm (leading-monomial g)))) | 
|---|
|  | 524 | (multiple-value-bind (c cf cg) | 
|---|
| [3652] | 525 | (universal-ezgcd (leading-coefficient f) (leading-coefficient g)) | 
|---|
| [3651] | 526 | (declare (ignore c)) | 
|---|
|  | 527 | (subtract | 
|---|
| [3673] | 528 | (multiply f (change-class mf 'term :coeff cg)) | 
|---|
|  | 529 | (multiply g (change-class mg 'term :coeff cf))))))) | 
|---|
| [3651] | 530 |  | 
|---|
| [3676] | 531 | (defgeneric poly-content (object) | 
|---|
|  | 532 | (:documentation "Greatest common divisor of the coefficients of the polynomial object OBJECT.") | 
|---|
| [3677] | 533 | (:method ((self poly)) | 
|---|
|  | 534 | (reduce #'universal-gcd | 
|---|
| [3679] | 535 | (mapcar #'term-coeff (rest (poly-termlist self))) | 
|---|
|  | 536 | :initial-value (leading-coefficient self)))) | 
|---|
| [3676] | 537 |  | 
|---|
| [3684] | 538 | (defun poly-primitive-part (object) | 
|---|
| [3685] | 539 | "Divide polynomial OBJECT by gcd of its | 
|---|
| [3684] | 540 | coefficients. Return the resulting polynomial." | 
|---|
| [3688] | 541 | (scalar-divide-by object (poly-content object))) | 
|---|
| [3682] | 542 |  | 
|---|
| [3700] | 543 | (defun poly-insert-variables (self k) | 
|---|
| [3697] | 544 | (left-tensor-product-by self (make-instance 'monom :dimension k))) | 
|---|
|  | 545 |  | 
|---|
| [3698] | 546 | (defun saturation-extension (f plist &aux (k (length plist))) | 
|---|
| [3708] | 547 | "Calculate [F', U1*P1-1,U2*P2-1,...,UK*PK-1], where | 
|---|
|  | 548 | PLIST=[P1,P2,...,PK] and F' is F with variables U1,U2,...,UK inserted | 
|---|
| [3711] | 549 | as first K variables. It destructively modifies F and PLIST." | 
|---|
| [3700] | 550 | (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f) | 
|---|
| [3699] | 551 | (standard-extension-1 plist))) | 
|---|
| [3694] | 552 |  | 
|---|
| [3699] | 553 | (defun polysaturation-extension (f plist &aux (k (length plist))) | 
|---|
| [3708] | 554 | "Calculate [F', U1*P1+U2*P2+...+UK*PK-1], where PLIST=[P1,P2,...,PK] | 
|---|
|  | 555 | and F' is F with variables U1,U2,...,UK inserted as first K | 
|---|
| [3711] | 556 | variables. It destructively modifies F and PLIST." | 
|---|
| [3700] | 557 | (nconc (mapc #'(lambda (x) (poly-insert-variables x k)) f) | 
|---|
| [3703] | 558 | (list (standard-sum plist)))) | 
|---|
| [3694] | 559 |  | 
|---|
| [3691] | 560 | (defun saturation-extension-1 (f p) | 
|---|
| [3712] | 561 | "Given family of polynomials F and a polynomial P, calculate [F', | 
|---|
|  | 562 | U*P-1], where F' is F with variable inserted as the first variable. It | 
|---|
|  | 563 | destructively modifies F and P." | 
|---|
| [3693] | 564 | (polysaturation-extension f (list p))) | 
|---|
| [3713] | 565 |  | 
|---|
| [3717] | 566 | (defmethod multiply-by ((object1 number) (object2 poly)) | 
|---|
| [3720] | 567 | (scalar-multiply-by (copy-instance object2) object1)) | 
|---|
| [3716] | 568 |  | 
|---|
| [3781] | 569 | (defun make-poly-variable (nvars pos &optional (power 1)) | 
|---|
|  | 570 | (change-class (make-monom-variable nvars pos power) 'poly)) | 
|---|
| [3736] | 571 |  | 
|---|
| [3821] | 572 | (defun make-poly-constant (nvars coeff) | 
|---|
|  | 573 | (change-class (make-term-constant nvars coeff) 'poly)) | 
|---|
|  | 574 |  | 
|---|
| [3713] | 575 | (defgeneric universal-expt (x y) | 
|---|
| [3721] | 576 | (:documentation "Raises X to power Y.") | 
|---|
| [3713] | 577 | (:method ((x number) (y integer)) (expt x y)) | 
|---|
|  | 578 | (:method ((x t) (y integer)) | 
|---|
|  | 579 | (declare (type fixnum y)) | 
|---|
|  | 580 | (cond | 
|---|
|  | 581 | ((minusp y) (error "universal-expt: Negative exponent.")) | 
|---|
|  | 582 | ((universal-zerop x) (if (zerop y) 1)) | 
|---|
|  | 583 | (t | 
|---|
|  | 584 | (do ((k 1 (ash k 1)) | 
|---|
|  | 585 | (q x (multiply q q))        ;keep squaring | 
|---|
|  | 586 | (p 1 (if (not (zerop (logand k y))) (multiply p q) p))) | 
|---|
|  | 587 | ((> k y) p) | 
|---|
| [3778] | 588 | (declare (fixnum k))))))) | 
|---|
|  | 589 |  | 
|---|
|  | 590 | (defgeneric poly-p (object) | 
|---|
|  | 591 | (:documentation "Checks if an object is a polynomial.") | 
|---|
| [3779] | 592 | (:method ((self poly)) t) | 
|---|
| [3778] | 593 | (:method ((self t)) nil)) | 
|---|
| [3830] | 594 |  | 
|---|
| [4021] | 595 | (defmethod ->sexp :before ((self poly) &optional vars) | 
|---|
| [3905] | 596 | "Ensures that the number of variables in VARS maches the polynomial dimension of the | 
|---|
|  | 597 | polynomial SELF." | 
|---|
| [4027] | 598 | (with-slots (dimension) | 
|---|
|  | 599 | self | 
|---|
|  | 600 | (assert (= (length vars) dimension) | 
|---|
| [4028] | 601 | nil | 
|---|
| [4027] | 602 | "Number of variables ~S does not match the dimension ~S" | 
|---|
|  | 603 | vars dimension))) | 
|---|
| [3904] | 604 |  | 
|---|
| [4021] | 605 | (defmethod ->sexp ((self poly) &optional vars) | 
|---|
| [3905] | 606 | "Converts a polynomial SELF to a sexp." | 
|---|
| [4036] | 607 | (let ((m (mapcar #'(lambda (x) (->sexp x vars)) | 
|---|
| [3830] | 608 | (poly-termlist self)))) | 
|---|
| [4036] | 609 | (cons ((endp m) 0) | 
|---|
|  | 610 | ((endp (cdr m)) (car m)) | 
|---|
|  | 611 | (t (cons '+ m))))) | 
|---|
| [3899] | 612 |  | 
|---|
| [3903] | 613 | (defparameter +list-marker+ :[ | 
|---|
|  | 614 | "A sexp with this head is considered a list of polynomials.") | 
|---|
|  | 615 |  | 
|---|
| [4021] | 616 | (defmethod ->sexp ((self cons) &optional vars) | 
|---|
| [3906] | 617 | (assert (eql (car self) +list-marker+)) | 
|---|
| [4021] | 618 | (cons +list-marker+ (mapcar #'(lambda (p) (->sexp p vars)) (cdr self)))) | 
|---|
| [3906] | 619 |  | 
|---|
|  | 620 |  | 
|---|
| [3899] | 621 | (defun poly-eval (expr vars order) | 
|---|
|  | 622 | "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in | 
|---|
|  | 623 | variables VARS. Return the resulting polynomial or list of | 
|---|
|  | 624 | polynomials.  Standard arithmetical operators in form EXPR are | 
|---|
|  | 625 | replaced with their analogues in the ring of polynomials, and the | 
|---|
|  | 626 | resulting expression is evaluated, resulting in a polynomial or a list | 
|---|
|  | 627 | of polynomials in internal form. A similar operation in another computer | 
|---|
|  | 628 | algebra system could be called 'expand' or so." | 
|---|
|  | 629 | (labels ((p-eval (p) (poly-eval p vars order)) | 
|---|
|  | 630 | (p-eval-list (plist) (mapcar #'p-eval plist))) | 
|---|
|  | 631 | (cond | 
|---|
|  | 632 | ((eq expr 0) | 
|---|
|  | 633 | (make-instance 'poly :dimension (length vars))) | 
|---|
|  | 634 | ((member expr vars :test #'equalp) | 
|---|
|  | 635 | (let ((pos (position expr vars :test #'equalp))) | 
|---|
|  | 636 | (make-poly-variable (length vars) pos))) | 
|---|
|  | 637 | ((atom expr) | 
|---|
| [4015] | 638 | (make-poly-constant (length vars) expr)) | 
|---|
| [3899] | 639 | ((eq (car expr) +list-marker+) | 
|---|
|  | 640 | (cons +list-marker+ (p-eval-list (cdr expr)))) | 
|---|
|  | 641 | (t | 
|---|
|  | 642 | (case (car expr) | 
|---|
|  | 643 | (+ (reduce #'add (p-eval-list (cdr expr)))) | 
|---|
|  | 644 | (- (apply #'subtract (p-eval-list (cdr expr)))) | 
|---|
|  | 645 | (* | 
|---|
|  | 646 | (if (endp (cddr expr))        ;unary | 
|---|
|  | 647 | (p-eval (cadr expr)) | 
|---|
|  | 648 | (reduce #'multiply (p-eval-list (cdr expr))))) | 
|---|
|  | 649 | (/ | 
|---|
|  | 650 | ;; A polynomial can be divided by a scalar | 
|---|
|  | 651 | (cond | 
|---|
|  | 652 | ((endp (cddr expr)) | 
|---|
|  | 653 | ;; A special case (/ ?), the inverse | 
|---|
|  | 654 | (divide (cadr expr))) | 
|---|
|  | 655 | (t | 
|---|
|  | 656 | (let ((num (p-eval (cadr expr))) | 
|---|
| [4016] | 657 | (denom-inverse (apply #'divide (mapcar #'p-eval (cddr expr))))) | 
|---|
| [3899] | 658 | (multiply denom-inverse num))))) | 
|---|
|  | 659 | (expt | 
|---|
|  | 660 | (cond | 
|---|
|  | 661 | ((member (cadr expr) vars :test #'equalp) | 
|---|
|  | 662 | ;;Special handling of (expt var pow) | 
|---|
|  | 663 | (let ((pos (position (cadr expr) vars :test #'equalp))) | 
|---|
|  | 664 | (make-poly-variable (length vars) pos (caddr expr)))) | 
|---|
|  | 665 | ((not (and (integerp (caddr expr)) (plusp (caddr expr)))) | 
|---|
|  | 666 | ;; Negative power means division in coefficient ring | 
|---|
|  | 667 | ;; Non-integer power means non-polynomial coefficient | 
|---|
|  | 668 | expr) | 
|---|
|  | 669 | (t (universal-expt (p-eval (cadr expr)) (caddr expr))))) | 
|---|
|  | 670 | (otherwise | 
|---|
| [4017] | 671 | (error "Cannot evaluate as polynomial: ~A" expr))))))) | 
|---|