| [1201] | 1 | ;;; -*-  Mode: Lisp -*- | 
|---|
| [81] | 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 |  | 
|---|
| [1610] | 22 | (defpackage "MONOM" | 
|---|
| [3446] | 23 | (:use :cl :copy) | 
|---|
| [422] | 24 | (:export "MONOM" | 
|---|
| [423] | 25 | "EXPONENT" | 
|---|
| [2781] | 26 | "MONOM-DIMENSION" | 
|---|
|  | 27 | "MONOM-EXPONENTS" | 
|---|
| [3442] | 28 | "MONOM-EQUALP" | 
|---|
|  | 29 | "MONOM-ELT" | 
|---|
|  | 30 | "MONOM-TOTAL-DEGREE" | 
|---|
| [3466] | 31 | "MONOM-SUGAR" | 
|---|
| [3442] | 32 | "MONOM-MULTIPLY-BY" | 
|---|
|  | 33 | "MONOM-DIVIDE-BY" | 
|---|
|  | 34 | "MONOM-COPY-INSTANCE" | 
|---|
|  | 35 | "MONOM-MULTIPLY-2" | 
|---|
|  | 36 | "MONOM-MULTIPLY" | 
|---|
|  | 37 | "MONOM-DIVIDES-P" | 
|---|
|  | 38 | "MONOM-DIVIDES-LCM-P" | 
|---|
|  | 39 | "MONOM-LCM-DIVIDES-LCM-P" | 
|---|
|  | 40 | "MONOM-LCM-EQUAL-LCM-P" | 
|---|
|  | 41 | "MONOM-DIVISIBLE-BY-P" | 
|---|
|  | 42 | "MONOM-REL-PRIME-P" | 
|---|
|  | 43 | "MONOM-LCM" | 
|---|
|  | 44 | "MONOM-GCD" | 
|---|
|  | 45 | "MONOM-DEPENDS-P" | 
|---|
|  | 46 | "MONOM-LEFT-TENSOR-PRODUCT-BY" | 
|---|
|  | 47 | "MONOM-RIGHT-TENSOR-PRODUCT-BY" | 
|---|
|  | 48 | "MONOM-LEFT-CONTRACT" | 
|---|
|  | 49 | "MAKE-MONOM-VARIABLE" | 
|---|
| [3472] | 50 | "MONOM->LIST" | 
|---|
|  | 51 | "LEX>" | 
|---|
|  | 52 | "GRLEX>" | 
|---|
|  | 53 | "REVLEX>" | 
|---|
|  | 54 | "GREVLEX>" | 
|---|
|  | 55 | "INVLEX>" | 
|---|
|  | 56 | "REVERSE-MONOMIAL-ORDER" | 
|---|
| [3482] | 57 | "MAKE-ELIMINATION-ORDER-FACTORY") | 
|---|
| [2524] | 58 | (:documentation | 
|---|
| [3477] | 59 | "This package implements basic operations on monomials, including | 
|---|
|  | 60 | various monomial orders. | 
|---|
|  | 61 |  | 
|---|
| [2524] | 62 | DATA STRUCTURES: Conceptually, monomials can be represented as lists: | 
|---|
| [81] | 63 |  | 
|---|
| [2524] | 64 | monom: (n1 n2 ... nk) where ni are non-negative integers | 
|---|
|  | 65 |  | 
|---|
|  | 66 | However, lists may be implemented as other sequence types, so the | 
|---|
|  | 67 | flexibility to change the representation should be maintained in the | 
|---|
|  | 68 | code to use general operations on sequences whenever possible. The | 
|---|
|  | 69 | optimization for the actual representation should be left to | 
|---|
|  | 70 | declarations and the compiler. | 
|---|
|  | 71 |  | 
|---|
|  | 72 | EXAMPLES: Suppose that variables are x and y. Then | 
|---|
|  | 73 |  | 
|---|
|  | 74 | Monom x*y^2 ---> (1 2) ")) | 
|---|
|  | 75 |  | 
|---|
| [1610] | 76 | (in-package :monom) | 
|---|
| [48] | 77 |  | 
|---|
| [1925] | 78 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0))) | 
|---|
| [1923] | 79 |  | 
|---|
| [48] | 80 | (deftype exponent () | 
|---|
|  | 81 | "Type of exponent in a monomial." | 
|---|
|  | 82 | 'fixnum) | 
|---|
|  | 83 |  | 
|---|
| [2022] | 84 | (defclass monom () | 
|---|
| [3312] | 85 | ((exponents :initarg :exponents :accessor monom-exponents | 
|---|
| [3054] | 86 | :documentation "The powers of the variables.")) | 
|---|
| [3289] | 87 | ;; default-initargs are not needed, they are handled by SHARED-INITIALIZE | 
|---|
|  | 88 | ;;(:default-initargs :dimension 'foo :exponents 'bar :exponent 'baz) | 
|---|
| [2779] | 89 | (:documentation | 
|---|
|  | 90 | "Implements a monomial, i.e. a product of powers | 
|---|
|  | 91 | of variables, like X*Y^2.")) | 
|---|
| [880] | 92 |  | 
|---|
| [2245] | 93 | (defmethod print-object ((self monom) stream) | 
|---|
| [3196] | 94 | (print-unreadable-object (self stream :type t :identity t) | 
|---|
| [3313] | 95 | (with-accessors ((exponents monom-exponents)) | 
|---|
| [3216] | 96 | self | 
|---|
| [3313] | 97 | (format stream "EXPONENTS=~A" | 
|---|
|  | 98 | exponents)))) | 
|---|
| [2027] | 99 |  | 
|---|
| [3299] | 100 | (defmethod initialize-instance :after ((self monom) | 
|---|
| [3297] | 101 | &key | 
|---|
|  | 102 | (dimension 0 dimension-supplied-p) | 
|---|
|  | 103 | (exponents nil exponents-supplied-p) | 
|---|
| [3318] | 104 | (exponent  0) | 
|---|
| [3297] | 105 | &allow-other-keys | 
|---|
| [2390] | 106 | ) | 
|---|
| [3329] | 107 | "The following INITIALIZE-INSTANCE method allows instance initialization | 
|---|
|  | 108 | of a MONOM in a style similar to MAKE-ARRAY, e.g.: | 
|---|
| [3328] | 109 |  | 
|---|
|  | 110 | (MAKE-INSTANCE :EXPONENTS '(1 2 3))      --> #<MONOM EXPONENTS=#(1 2 3)> | 
|---|
|  | 111 | (MAKE-INSTANCE :DIMENSION 3)             --> #<MONOM EXPONENTS=#(0 0 0)> | 
|---|
|  | 112 | (MAKE-INSTANCE :DIMENSION 3 :EXPONENT 7) --> #<MONOM EXPONENTS=#(7 7 7)> | 
|---|
| [3329] | 113 |  | 
|---|
|  | 114 | If both DIMENSION and EXPONENTS are supplied, they must be compatible, | 
|---|
|  | 115 | i.e. the length of EXPONENTS must be equal DIMENSION. If EXPONENTS | 
|---|
|  | 116 | is not supplied, a monom with repeated value EXPONENT is created. | 
|---|
|  | 117 | By default EXPONENT is 0, which results in a constant monomial. | 
|---|
| [3328] | 118 | " | 
|---|
| [3315] | 119 | (cond | 
|---|
|  | 120 | (exponents-supplied-p | 
|---|
| [3327] | 121 | (when (and dimension-supplied-p | 
|---|
|  | 122 | (/= dimension (length exponents))) | 
|---|
|  | 123 | (error "EXPONENTS (~A) must have supplied length DIMENSION (~A)" | 
|---|
|  | 124 | exponents dimension)) | 
|---|
| [3315] | 125 | (let ((dim (length exponents))) | 
|---|
|  | 126 | (setf (slot-value self 'exponents) (make-array dim :initial-contents exponents)))) | 
|---|
| [3321] | 127 | (dimension-supplied-p | 
|---|
| [3315] | 128 | ;; when all exponents are to be identical | 
|---|
| [3321] | 129 | (setf (slot-value self 'exponents) (make-array (list dimension) | 
|---|
|  | 130 | :initial-element exponent | 
|---|
|  | 131 | :element-type 'exponent))) | 
|---|
|  | 132 | (t | 
|---|
|  | 133 | (error "Initarg DIMENSION or EXPONENTS must be supplied.")))) | 
|---|
| [3293] | 134 |  | 
|---|
| [3573] | 135 | (defgeneric monom-dimension (m) | 
|---|
| [3443] | 136 | (:method ((m monom)) | 
|---|
|  | 137 | (length (monom-exponents m)))) | 
|---|
| [3317] | 138 |  | 
|---|
| [3541] | 139 | (defgeneric universal-equalp (object1 object2) | 
|---|
|  | 140 | (:documentation "Returns T iff OBJECT1 and OBJECT2 are equal.") | 
|---|
| [3443] | 141 | (:method ((m1 monom) (m2 monom)) | 
|---|
| [3541] | 142 | "Returns T iff monomials M1 and M2 have identical EXPONENTS." | 
|---|
| [3535] | 143 | (equalp (monom-exponents m1) (monom-exponents m2)))) | 
|---|
| [2547] | 144 |  | 
|---|
| [3443] | 145 | (defgeneric monom-elt (m index) | 
|---|
| [3574] | 146 | (:documentation "Return the power in the monomial M of variable number INDEX.") | 
|---|
| [3443] | 147 | (:method ((m monom) index) | 
|---|
| [3550] | 148 | "Return the power in the monomial M of variable number INDEX." | 
|---|
| [3443] | 149 | (with-slots (exponents) | 
|---|
|  | 150 | m | 
|---|
|  | 151 | (elt exponents index)))) | 
|---|
| [48] | 152 |  | 
|---|
| [3443] | 153 | (defgeneric (setf monom-elt) (new-value m index) | 
|---|
| [3550] | 154 | (:documentation "Set the power in the monomial M of variable number INDEX.") | 
|---|
| [3443] | 155 | (:method (new-value (m monom) index) | 
|---|
|  | 156 | (with-slots (exponents) | 
|---|
|  | 157 | m | 
|---|
| [3453] | 158 | (setf (elt exponents index) new-value)))) | 
|---|
| [2023] | 159 |  | 
|---|
| [3551] | 160 | (defgeneric total-degree (m &optional start end) | 
|---|
|  | 161 | (:documentation "Return the total degree of a monomoal M. Optinally, a range | 
|---|
| [3449] | 162 | of variables may be specified with arguments START and END.") | 
|---|
|  | 163 | (:method ((m monom) &optional (start 0) (end (monom-dimension m))) | 
|---|
|  | 164 | (declare (type fixnum start end)) | 
|---|
|  | 165 | (with-slots (exponents) | 
|---|
|  | 166 | m | 
|---|
|  | 167 | (reduce #'+ exponents :start start :end end)))) | 
|---|
| [48] | 168 |  | 
|---|
| [3552] | 169 | (defgeneric sugar (m &optional start end) | 
|---|
| [3446] | 170 | (:documentation "Return the sugar of a monomial M. Optinally, a range | 
|---|
|  | 171 | of variables may be specified with arguments START and END.") | 
|---|
|  | 172 | (:method ((m monom)  &optional (start 0) (end (monom-dimension m))) | 
|---|
|  | 173 | (declare (type fixnum start end)) | 
|---|
| [3552] | 174 | (total-degree m start end))) | 
|---|
| [48] | 175 |  | 
|---|
| [3553] | 176 | (defgeneric multiply-by (self other) | 
|---|
| [3549] | 177 | (:documentation "Multiply SELF by OTHER, return SELF.") | 
|---|
| [3446] | 178 | (:method ((self monom) (other monom)) | 
|---|
|  | 179 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 180 | self | 
|---|
|  | 181 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 182 | other | 
|---|
|  | 183 | (unless (= (length exponents1) (length exponents2)) | 
|---|
|  | 184 | (error "Incompatible dimensions")) | 
|---|
|  | 185 | (map-into exponents1 #'+ exponents1 exponents2))) | 
|---|
|  | 186 | self)) | 
|---|
| [2069] | 187 |  | 
|---|
| [3553] | 188 | (defgeneric divide-by (self other) | 
|---|
| [3544] | 189 | (:documentation "Divide SELF by OTHER, return SELF.") | 
|---|
| [3446] | 190 | (:method ((self monom) (other monom)) | 
|---|
|  | 191 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 192 | self | 
|---|
|  | 193 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 194 | other | 
|---|
|  | 195 | (unless (= (length exponents1) (length exponents2)) | 
|---|
|  | 196 | (error "divide-by: Incompatible dimensions.")) | 
|---|
|  | 197 | (unless (every #'>= exponents1 exponents2) | 
|---|
|  | 198 | (error "divide-by: Negative power would result.")) | 
|---|
|  | 199 | (map-into exponents1 #'- exponents1 exponents2))) | 
|---|
|  | 200 | self)) | 
|---|
| [2818] | 201 |  | 
|---|
| [3448] | 202 | (defmethod copy-instance :around ((object monom)  &rest initargs &key &allow-other-keys) | 
|---|
|  | 203 | "An :AROUND method of COPY-INSTANCE. It replaces | 
|---|
|  | 204 | exponents with a fresh copy of the sequence." | 
|---|
| [3446] | 205 | (declare (ignore object initargs)) | 
|---|
|  | 206 | (let ((copy (call-next-method))) | 
|---|
|  | 207 | (setf (monom-exponents copy) (copy-seq (monom-exponents copy))) | 
|---|
| [3453] | 208 | copy)) | 
|---|
| [2950] | 209 |  | 
|---|
| [3560] | 210 | (defun multiply-2 (object1 object2) | 
|---|
| [3559] | 211 | "Multiply OBJECT1 by OBJECT2" | 
|---|
|  | 212 | (multiply-by (copy-instance object1) (copy-instance object2))) | 
|---|
| [2816] | 213 |  | 
|---|
| [3557] | 214 | (defun multiply (&rest factors) | 
|---|
|  | 215 | "Non-destructively multiply list FACTORS." | 
|---|
|  | 216 | (reduce #'multiply-2 factors)) | 
|---|
| [3554] | 217 |  | 
|---|
| [3557] | 218 | (defun divide (numerator &rest denominators) | 
|---|
|  | 219 | "Non-destructively divide object NUMERATOR by product of DENOMINATORS." | 
|---|
| [3558] | 220 | (divide-by (copy-instance numerator) (multiply denominators))) | 
|---|
| [48] | 221 |  | 
|---|
| [3441] | 222 | (defmethod monom-divides-p ((m1 monom) (m2 monom)) | 
|---|
| [48] | 223 | "Returns T if monomial M1 divides monomial M2, NIL otherwise." | 
|---|
| [2039] | 224 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 225 | m1 | 
|---|
|  | 226 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 227 | m2 | 
|---|
|  | 228 | (every #'<= exponents1 exponents2)))) | 
|---|
| [48] | 229 |  | 
|---|
| [3441] | 230 | (defmethod monom-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom)) | 
|---|
| [2055] | 231 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise." | 
|---|
| [875] | 232 | (every #'(lambda (x y z) (<= x (max y z))) | 
|---|
| [869] | 233 | m1 m2 m3)) | 
|---|
| [48] | 234 |  | 
|---|
| [3441] | 235 | (defmethod monom-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom)) | 
|---|
| [48] | 236 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise." | 
|---|
| [1890] | 237 | (declare (type monom m1 m2 m3 m4)) | 
|---|
| [869] | 238 | (every #'(lambda (x y z w) (<= (max x y) (max z w))) | 
|---|
|  | 239 | m1 m2 m3 m4)) | 
|---|
|  | 240 |  | 
|---|
| [3562] | 241 | (defmethod monom-lcm-equal-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom)) | 
|---|
| [2075] | 242 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise." | 
|---|
| [2171] | 243 | (with-slots ((exponents1 exponents)) | 
|---|
| [2076] | 244 | m1 | 
|---|
| [2171] | 245 | (with-slots ((exponents2 exponents)) | 
|---|
| [2076] | 246 | m2 | 
|---|
| [2171] | 247 | (with-slots ((exponents3 exponents)) | 
|---|
| [2076] | 248 | m3 | 
|---|
| [2171] | 249 | (with-slots ((exponents4 exponents)) | 
|---|
| [2076] | 250 | m4 | 
|---|
| [2077] | 251 | (every | 
|---|
|  | 252 | #'(lambda (x y z w) (= (max x y) (max z w))) | 
|---|
|  | 253 | exponents1 exponents2 exponents3 exponents4)))))) | 
|---|
| [48] | 254 |  | 
|---|
| [3563] | 255 | (defgeneric divisible-by-p (object1 object2) | 
|---|
|  | 256 | (:documentation "Return T if OBJECT1 is divisible by OBJECT2.") | 
|---|
|  | 257 | (:method ((m1 monom) (m2 monom)) | 
|---|
|  | 258 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise." | 
|---|
|  | 259 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 260 | m1 | 
|---|
|  | 261 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 262 | m2 | 
|---|
|  | 263 | (every #'>= exponents1 exponents2))))) | 
|---|
| [2078] | 264 |  | 
|---|
| [3565] | 265 | (defgeneric rel-prime-p (object1 object2) | 
|---|
| [3575] | 266 | (:documentation "Returns T if objects OBJECT1 and OBJECT2 are relatively prime.") | 
|---|
| [3563] | 267 | (:method ((m1 monom) (m2 monom)) | 
|---|
|  | 268 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)." | 
|---|
|  | 269 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 270 | m1 | 
|---|
|  | 271 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 272 | m2 | 
|---|
|  | 273 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))) | 
|---|
| [48] | 274 |  | 
|---|
| [3566] | 275 | (defgeneric monom-lcm (object1 object2) | 
|---|
|  | 276 | (:documentation "Returns the multiple of objects OBJECT1 and OBJECT2.") | 
|---|
|  | 277 | (:method ((m1 monom) (m2 monom)) | 
|---|
|  | 278 | "Returns least common multiple of monomials M1 and M2." | 
|---|
|  | 279 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 280 | m1 | 
|---|
|  | 281 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 282 | m2 | 
|---|
|  | 283 | (let* ((exponents (copy-seq exponents1))) | 
|---|
|  | 284 | (map-into exponents #'max exponents1 exponents2) | 
|---|
|  | 285 | (make-instance 'monom :exponents exponents)))))) | 
|---|
| [48] | 286 |  | 
|---|
| [2080] | 287 |  | 
|---|
| [3567] | 288 | (defgeneric universal-gcd (object1 object2) | 
|---|
|  | 289 | (:documentation "Returns GCD of objects OBJECT1 and OBJECT2") | 
|---|
|  | 290 | (:method ((m1 monom) (m2 monom)) | 
|---|
| [3568] | 291 | "Returns greatest common divisor of monomials M1 and M2." | 
|---|
|  | 292 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 293 | m1 | 
|---|
|  | 294 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 295 | m2 | 
|---|
|  | 296 | (let* ((exponents (copy-seq exponents1))) | 
|---|
|  | 297 | (map-into exponents #'min exponents1 exponents2) | 
|---|
|  | 298 | (make-instance 'monom :exponents exponents)))))) | 
|---|
| [48] | 299 |  | 
|---|
| [3569] | 300 | (defgeneric depends-p (object k) | 
|---|
|  | 301 | (:documentation "Returns T iff object OBJECT depends on variable K.") | 
|---|
|  | 302 | (:method ((m monom) k) | 
|---|
|  | 303 | "Return T if the monomial M depends on variable number K." | 
|---|
|  | 304 | (declare (type fixnum k)) | 
|---|
|  | 305 | (with-slots (exponents) | 
|---|
|  | 306 | m | 
|---|
|  | 307 | (plusp (elt exponents k))))) | 
|---|
| [48] | 308 |  | 
|---|
| [3570] | 309 | (defgeneric left-tensor-product-by (self other) | 
|---|
|  | 310 | (:documentation "Returns a tensor product SELF by OTHER, stored into | 
|---|
|  | 311 | SELF. Return SELF.") | 
|---|
|  | 312 | (:method ((self monom) (other monom)) | 
|---|
|  | 313 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 314 | self | 
|---|
|  | 315 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 316 | other | 
|---|
|  | 317 | (setf exponents1 (concatenate 'vector exponents2 exponents1)))) | 
|---|
|  | 318 | self)) | 
|---|
| [48] | 319 |  | 
|---|
| [3570] | 320 | (defgeneric right-tensor-product-by (self other) | 
|---|
|  | 321 | (:documentation "Returns a tensor product of OTHER by SELF, stored | 
|---|
|  | 322 | into SELF. Returns SELF.") | 
|---|
|  | 323 | (:method ((self monom) (other monom)) | 
|---|
|  | 324 | (with-slots ((exponents1 exponents)) | 
|---|
|  | 325 | self | 
|---|
|  | 326 | (with-slots ((exponents2 exponents)) | 
|---|
|  | 327 | other | 
|---|
|  | 328 | (setf exponents1 (concatenate 'vector exponents1 exponents2)))) | 
|---|
|  | 329 | self)) | 
|---|
| [3026] | 330 |  | 
|---|
| [3571] | 331 | (defgeneric left-contract (self k) | 
|---|
|  | 332 | (:documentation "Drop the first K variables in object SELF.") | 
|---|
|  | 333 | (:method ((self monom) k) | 
|---|
|  | 334 | "Drop the first K variables in monomial M." | 
|---|
|  | 335 | (declare (fixnum k)) | 
|---|
|  | 336 | (with-slots (exponents) | 
|---|
|  | 337 | self | 
|---|
|  | 338 | (setf exponents (subseq exponents k))) | 
|---|
|  | 339 | self)) | 
|---|
| [886] | 340 |  | 
|---|
|  | 341 | (defun make-monom-variable (nvars pos &optional (power 1) | 
|---|
| [2218] | 342 | &aux (m (make-instance 'monom :dimension nvars))) | 
|---|
| [886] | 343 | "Construct a monomial in the polynomial ring | 
|---|
|  | 344 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING | 
|---|
|  | 345 | which represents a single variable. It assumes number of variables | 
|---|
|  | 346 | NVARS and the variable is at position POS. Optionally, the variable | 
|---|
|  | 347 | may appear raised to power POWER. " | 
|---|
| [1924] | 348 | (declare (type fixnum nvars pos power) (type monom m)) | 
|---|
| [2089] | 349 | (with-slots (exponents) | 
|---|
|  | 350 | m | 
|---|
| [2154] | 351 | (setf (elt exponents pos) power) | 
|---|
| [2089] | 352 | m)) | 
|---|
| [1151] | 353 |  | 
|---|
| [3441] | 354 | (defmethod monom->list ((m monom)) | 
|---|
| [1152] | 355 | "A human-readable representation of a monomial M as a list of exponents." | 
|---|
| [2779] | 356 | (coerce (monom-exponents m) 'list)) | 
|---|
| [3472] | 357 |  | 
|---|
|  | 358 |  | 
|---|
| [3474] | 359 | ;; pure lexicographic | 
|---|
| [3472] | 360 | (defgeneric lex> (p q &optional start end) | 
|---|
|  | 361 | (:documentation "Return T if P>Q with respect to lexicographic | 
|---|
|  | 362 | order, otherwise NIL.  The second returned value is T if P=Q, | 
|---|
|  | 363 | otherwise it is NIL.") | 
|---|
| [3483] | 364 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension  p))) | 
|---|
| [3472] | 365 | (declare (type fixnum start end)) | 
|---|
|  | 366 | (do ((i start (1+ i))) | 
|---|
|  | 367 | ((>= i end) (values nil t)) | 
|---|
|  | 368 | (cond | 
|---|
| [3483] | 369 | ((> (monom-elt p i) (monom-elt q i)) | 
|---|
| [3472] | 370 | (return-from lex> (values t nil))) | 
|---|
| [3483] | 371 | ((< (monom-elt p i) (monom-elt q i)) | 
|---|
| [3472] | 372 | (return-from lex> (values nil nil))))))) | 
|---|
|  | 373 |  | 
|---|
| [3475] | 374 | ;; total degree order, ties broken by lexicographic | 
|---|
| [3472] | 375 | (defgeneric grlex> (p q &optional start end) | 
|---|
|  | 376 | (:documentation "Return T if P>Q with respect to graded | 
|---|
|  | 377 | lexicographic order, otherwise NIL.  The second returned value is T if | 
|---|
|  | 378 | P=Q, otherwise it is NIL.") | 
|---|
| [3483] | 379 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension  p))) | 
|---|
| [3472] | 380 | (declare (type monom p q) (type fixnum start end)) | 
|---|
| [3583] | 381 | (let ((d1 (total-degree p start end)) | 
|---|
|  | 382 | (d2 (total-degree q start end))) | 
|---|
| [3472] | 383 | (declare (type fixnum d1 d2)) | 
|---|
|  | 384 | (cond | 
|---|
|  | 385 | ((> d1 d2) (values t nil)) | 
|---|
|  | 386 | ((< d1 d2) (values nil nil)) | 
|---|
|  | 387 | (t | 
|---|
|  | 388 | (lex> p q start end)))))) | 
|---|
|  | 389 |  | 
|---|
|  | 390 | ;; reverse lexicographic | 
|---|
|  | 391 | (defgeneric revlex> (p q &optional start end) | 
|---|
|  | 392 | (:documentation "Return T if P>Q with respect to reverse | 
|---|
|  | 393 | lexicographic order, NIL otherwise.  The second returned value is T if | 
|---|
|  | 394 | P=Q, otherwise it is NIL. This is not and admissible monomial order | 
|---|
|  | 395 | because some sets do not have a minimal element. This order is useful | 
|---|
|  | 396 | in constructing other orders.") | 
|---|
| [3483] | 397 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension  p))) | 
|---|
| [3472] | 398 | (declare (type fixnum start end)) | 
|---|
|  | 399 | (do ((i (1- end) (1- i))) | 
|---|
|  | 400 | ((< i start) (values nil t)) | 
|---|
|  | 401 | (declare (type fixnum i)) | 
|---|
|  | 402 | (cond | 
|---|
| [3483] | 403 | ((< (monom-elt p i) (monom-elt q i)) | 
|---|
| [3472] | 404 | (return-from revlex> (values t nil))) | 
|---|
| [3483] | 405 | ((> (monom-elt p i) (monom-elt q i)) | 
|---|
| [3472] | 406 | (return-from revlex> (values nil nil))))))) | 
|---|
|  | 407 |  | 
|---|
|  | 408 |  | 
|---|
|  | 409 | ;; total degree, ties broken by reverse lexicographic | 
|---|
|  | 410 | (defgeneric grevlex> (p q &optional start end) | 
|---|
|  | 411 | (:documentation "Return T if P>Q with respect to graded reverse | 
|---|
|  | 412 | lexicographic order, NIL otherwise. The second returned value is T if | 
|---|
|  | 413 | P=Q, otherwise it is NIL.") | 
|---|
| [3483] | 414 | (:method  ((p monom) (q monom) &optional (start 0) (end (monom-dimension  p))) | 
|---|
| [3472] | 415 | (declare (type fixnum start end)) | 
|---|
| [3584] | 416 | (let ((d1 (total-degree p start end)) | 
|---|
|  | 417 | (d2 (total-degree q start end))) | 
|---|
| [3472] | 418 | (declare (type fixnum d1 d2)) | 
|---|
|  | 419 | (cond | 
|---|
|  | 420 | ((> d1 d2) (values t nil)) | 
|---|
|  | 421 | ((< d1 d2) (values nil nil)) | 
|---|
|  | 422 | (t | 
|---|
|  | 423 | (revlex> p q start end)))))) | 
|---|
|  | 424 |  | 
|---|
|  | 425 | (defgeneric invlex> (p q &optional start end) | 
|---|
|  | 426 | (:documentation "Return T if P>Q with respect to inverse | 
|---|
|  | 427 | lexicographic order, NIL otherwise The second returned value is T if | 
|---|
|  | 428 | P=Q, otherwise it is NIL.") | 
|---|
| [3483] | 429 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension  p))) | 
|---|
| [3472] | 430 | (declare  (type fixnum start end)) | 
|---|
|  | 431 | (do ((i (1- end) (1- i))) | 
|---|
|  | 432 | ((< i start) (values nil t)) | 
|---|
|  | 433 | (declare (type fixnum i)) | 
|---|
|  | 434 | (cond | 
|---|
| [3483] | 435 | ((> (monom-elt p i) (monom-elt q i)) | 
|---|
| [3472] | 436 | (return-from invlex> (values t nil))) | 
|---|
| [3483] | 437 | ((< (monom-elt p i) (monom-elt q i)) | 
|---|
| [3472] | 438 | (return-from invlex> (values nil nil))))))) | 
|---|
|  | 439 |  | 
|---|
|  | 440 | (defun reverse-monomial-order (order) | 
|---|
|  | 441 | "Create the inverse monomial order to the given monomial order ORDER." | 
|---|
| [3483] | 442 | #'(lambda (p q &optional (start 0) (end (monom-dimension q))) | 
|---|
| [3472] | 443 | (declare (type monom p q) (type fixnum start end)) | 
|---|
|  | 444 | (funcall order q p start end))) | 
|---|
|  | 445 |  | 
|---|
|  | 446 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 
|---|
|  | 447 | ;; | 
|---|
|  | 448 | ;; Order making functions | 
|---|
|  | 449 | ;; | 
|---|
|  | 450 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 
|---|
|  | 451 |  | 
|---|
|  | 452 | ;; This returns a closure with the same signature | 
|---|
|  | 453 | ;; as all orders such as #'LEX>. | 
|---|
| [3487] | 454 | (defun make-elimination-order-factory-1 (&optional (secondary-elimination-order #'lex>)) | 
|---|
| [3472] | 455 | "It constructs an elimination order used for the 1-st elimination ideal, | 
|---|
|  | 456 | i.e. for eliminating the first variable. Thus, the order compares the degrees of the | 
|---|
|  | 457 | first variable in P and Q first, with ties broken by SECONDARY-ELIMINATION-ORDER." | 
|---|
| [3483] | 458 | #'(lambda (p q &optional (start 0) (end (monom-dimension p))) | 
|---|
| [3472] | 459 | (declare (type monom p q) (type fixnum start end)) | 
|---|
|  | 460 | (cond | 
|---|
| [3483] | 461 | ((> (monom-elt p start) (monom-elt q start)) | 
|---|
| [3472] | 462 | (values t nil)) | 
|---|
| [3483] | 463 | ((< (monom-elt p start) (monom-elt q start)) | 
|---|
| [3472] | 464 | (values nil nil)) | 
|---|
|  | 465 | (t | 
|---|
|  | 466 | (funcall secondary-elimination-order p q (1+ start) end))))) | 
|---|
|  | 467 |  | 
|---|
|  | 468 | ;; This returns a closure which is called with an integer argument. | 
|---|
|  | 469 | ;; The result is *another closure* with the same signature as all | 
|---|
|  | 470 | ;; orders such as #'LEX>. | 
|---|
| [3486] | 471 | (defun make-elimination-order-factory (&optional | 
|---|
| [3472] | 472 | (primary-elimination-order #'lex>) | 
|---|
|  | 473 | (secondary-elimination-order #'lex>)) | 
|---|
|  | 474 | "Return a function with a single integer argument K. This should be | 
|---|
|  | 475 | the number of initial K variables X[0],X[1],...,X[K-1], which precede | 
|---|
|  | 476 | remaining variables.  The call to the closure creates a predicate | 
|---|
|  | 477 | which compares monomials according to the K-th elimination order. The | 
|---|
|  | 478 | monomial orders PRIMARY-ELIMINATION-ORDER and | 
|---|
|  | 479 | SECONDARY-ELIMINATION-ORDER are used to compare the first K and the | 
|---|
|  | 480 | remaining variables, respectively, with ties broken by lexicographical | 
|---|
|  | 481 | order. That is, if PRIMARY-ELIMINATION-ORDER yields (VALUES NIL T), | 
|---|
|  | 482 | which indicates that the first K variables appear with identical | 
|---|
|  | 483 | powers, then the result is that of a call to | 
|---|
|  | 484 | SECONDARY-ELIMINATION-ORDER applied to the remaining variables | 
|---|
|  | 485 | X[K],X[K+1],..." | 
|---|
|  | 486 | #'(lambda (k) | 
|---|
|  | 487 | (cond | 
|---|
|  | 488 | ((<= k 0) | 
|---|
|  | 489 | (error "K must be at least 1")) | 
|---|
|  | 490 | ((= k 1) | 
|---|
| [3485] | 491 | (make-elimination-order-factory-1 secondary-elimination-order)) | 
|---|
| [3472] | 492 | (t | 
|---|
| [3483] | 493 | #'(lambda (p q &optional (start 0) (end (monom-dimension  p))) | 
|---|
| [3472] | 494 | (declare (type monom p q) (type fixnum start end)) | 
|---|
|  | 495 | (multiple-value-bind (primary equal) | 
|---|
|  | 496 | (funcall primary-elimination-order p q start k) | 
|---|
|  | 497 | (if equal | 
|---|
|  | 498 | (funcall secondary-elimination-order p q k end) | 
|---|
|  | 499 | (values primary nil)))))))) | 
|---|
|  | 500 |  | 
|---|
| [3531] | 501 | (defclass term (monom) | 
|---|
|  | 502 | ((coeff :initarg :coeff :accessor term-coeff)) | 
|---|
|  | 503 | (:default-initargs :coeff nil) | 
|---|
|  | 504 | (:documentation "Implements a term, i.e. a product of a scalar | 
|---|
|  | 505 | and powers of some variables, such as 5*X^2*Y^3.")) | 
|---|
|  | 506 |  | 
|---|
|  | 507 | (defmethod print-object ((self term) stream) | 
|---|
|  | 508 | (print-unreadable-object (self stream :type t :identity t) | 
|---|
|  | 509 | (with-accessors ((exponents monom-exponents) | 
|---|
| [3532] | 510 | (coeff term-coeff)) | 
|---|
| [3531] | 511 | self | 
|---|
|  | 512 | (format stream "EXPONENTS=~A COEFF=~A" | 
|---|
|  | 513 | exponents coeff)))) | 
|---|
|  | 514 |  | 
|---|
| [3542] | 515 | (defmethod universal-equalp ((term1 term) (term2 term)) | 
|---|
|  | 516 | "Returns T if TERM1 and TERM2 are equal as MONOM, and coefficients | 
|---|
|  | 517 | are UNIVERSAL-EQUALP." | 
|---|
| [3540] | 518 | (and (call-next-method) | 
|---|
|  | 519 | (universal-equalp (term-coeff term1) (term-coeff term2)))) | 
|---|
| [3531] | 520 |  | 
|---|
| [3533] | 521 | (defmethod update-instance-for-different-class :after ((old monom) (new term) &key) | 
|---|
|  | 522 | (setf (term-coeff new) 1)) | 
|---|
| [3531] | 523 |  | 
|---|
| [3556] | 524 | (defmethod multiply-by :before ((self term) (other term)) | 
|---|
| [3531] | 525 | "Destructively multiply terms SELF and OTHER and store the result into SELF. | 
|---|
|  | 526 | It returns SELF." | 
|---|
| [3580] | 527 | (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other)))) | 
|---|
| [3531] | 528 |  | 
|---|
| [3581] | 529 | (defmethod left-tensor-product-by :before ((self term) (other term)) | 
|---|
| [3579] | 530 | (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other)))) | 
|---|
| [3531] | 531 |  | 
|---|
| [3581] | 532 | (defmethod right-tensor-product-by :before ((self term) (other term)) | 
|---|
| [3556] | 533 | (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other)))) | 
|---|
| [3531] | 534 |  | 
|---|
| [3556] | 535 | (defmethod divide-by :before ((self term) (other term)) | 
|---|
|  | 536 | (setf (term-coeff self) (divide-by (term-coeff self) (term-coeff other)))) | 
|---|
| [3531] | 537 |  | 
|---|
| [3582] | 538 | (defgeneric unary-minus (self) | 
|---|
|  | 539 | (:method ((self term)) | 
|---|
|  | 540 | (setf (term-coeff self) (unary-minus (term-coeff self))) | 
|---|
|  | 541 | self)) | 
|---|
| [3531] | 542 |  | 
|---|
| [3578] | 543 | (defgeneric universal-zerop (self) | 
|---|
|  | 544 | (:method ((self term)) | 
|---|
|  | 545 | (universal-zerop (term-coeff self)))) | 
|---|