[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"
|
---|
[4225] | 23 | (:use :cl :utils :copy :ring :integer-ring)
|
---|
[422] | 24 | (:export "MONOM"
|
---|
[3602] | 25 | "TERM"
|
---|
[423] | 26 | "EXPONENT"
|
---|
[2781] | 27 | "MONOM-DIMENSION"
|
---|
| 28 | "MONOM-EXPONENTS"
|
---|
[3592] | 29 | "UNIVERSAL-EQUALP"
|
---|
[3442] | 30 | "MONOM-ELT"
|
---|
[3592] | 31 | "TOTAL-DEGREE"
|
---|
| 32 | "SUGAR"
|
---|
| 33 | "MULTIPLY-BY"
|
---|
| 34 | "DIVIDE-BY"
|
---|
[3599] | 35 | "DIVIDE"
|
---|
[3592] | 36 | "MULTIPLY"
|
---|
| 37 | "DIVIDES-P"
|
---|
| 38 | "DIVIDES-LCM-P"
|
---|
| 39 | "LCM-DIVIDES-LCM-P"
|
---|
| 40 | "LCM-EQUAL-LCM-P"
|
---|
| 41 | "DIVISIBLE-BY-P"
|
---|
| 42 | "REL-PRIME-P"
|
---|
| 43 | "UNIVERSAL-LCM"
|
---|
| 44 | "UNIVERSAL-GCD"
|
---|
| 45 | "DEPENDS-P"
|
---|
| 46 | "LEFT-TENSOR-PRODUCT-BY"
|
---|
| 47 | "RIGHT-TENSOR-PRODUCT-BY"
|
---|
| 48 | "LEFT-CONTRACT"
|
---|
[3442] | 49 | "MAKE-MONOM-VARIABLE"
|
---|
[3811] | 50 | "MAKE-MONOM-CONSTANT"
|
---|
[3812] | 51 | "MAKE-TERM-CONSTANT"
|
---|
[3610] | 52 | "->LIST"
|
---|
[4023] | 53 | "->SEXP"
|
---|
[3472] | 54 | "LEX>"
|
---|
| 55 | "GRLEX>"
|
---|
| 56 | "REVLEX>"
|
---|
| 57 | "GREVLEX>"
|
---|
| 58 | "INVLEX>"
|
---|
| 59 | "REVERSE-MONOMIAL-ORDER"
|
---|
[3606] | 60 | "MAKE-ELIMINATION-ORDER-FACTORY"
|
---|
[3644] | 61 | "TERM-COEFF"
|
---|
[3616] | 62 | "UNARY-MINUS"
|
---|
[4031] | 63 | "UNARY-INVERSE"
|
---|
[3616] | 64 | "UNIVERSAL-ZEROP")
|
---|
[2524] | 65 | (:documentation
|
---|
[3477] | 66 | "This package implements basic operations on monomials, including
|
---|
| 67 | various monomial orders.
|
---|
| 68 |
|
---|
[2524] | 69 | DATA STRUCTURES: Conceptually, monomials can be represented as lists:
|
---|
[81] | 70 |
|
---|
[2524] | 71 | monom: (n1 n2 ... nk) where ni are non-negative integers
|
---|
| 72 |
|
---|
| 73 | However, lists may be implemented as other sequence types, so the
|
---|
| 74 | flexibility to change the representation should be maintained in the
|
---|
| 75 | code to use general operations on sequences whenever possible. The
|
---|
| 76 | optimization for the actual representation should be left to
|
---|
| 77 | declarations and the compiler.
|
---|
| 78 |
|
---|
| 79 | EXAMPLES: Suppose that variables are x and y. Then
|
---|
| 80 |
|
---|
| 81 | Monom x*y^2 ---> (1 2) "))
|
---|
| 82 |
|
---|
[4245] | 83 | (in-package "MONOM")
|
---|
[48] | 84 |
|
---|
[3802] | 85 | (proclaim '(optimize (speed 0) (space 0) (safety 3) (debug 0)))
|
---|
[1923] | 86 |
|
---|
[48] | 87 | (deftype exponent ()
|
---|
| 88 | "Type of exponent in a monomial."
|
---|
| 89 | 'fixnum)
|
---|
| 90 |
|
---|
[2022] | 91 | (defclass monom ()
|
---|
[3312] | 92 | ((exponents :initarg :exponents :accessor monom-exponents
|
---|
[3054] | 93 | :documentation "The powers of the variables."))
|
---|
[3289] | 94 | ;; default-initargs are not needed, they are handled by SHARED-INITIALIZE
|
---|
| 95 | ;;(:default-initargs :dimension 'foo :exponents 'bar :exponent 'baz)
|
---|
[2779] | 96 | (:documentation
|
---|
| 97 | "Implements a monomial, i.e. a product of powers
|
---|
| 98 | of variables, like X*Y^2."))
|
---|
[880] | 99 |
|
---|
[2245] | 100 | (defmethod print-object ((self monom) stream)
|
---|
[3196] | 101 | (print-unreadable-object (self stream :type t :identity t)
|
---|
[3313] | 102 | (with-accessors ((exponents monom-exponents))
|
---|
[3216] | 103 | self
|
---|
[3313] | 104 | (format stream "EXPONENTS=~A"
|
---|
| 105 | exponents))))
|
---|
[2027] | 106 |
|
---|
[3299] | 107 | (defmethod initialize-instance :after ((self monom)
|
---|
[3297] | 108 | &key
|
---|
| 109 | (dimension 0 dimension-supplied-p)
|
---|
| 110 | (exponents nil exponents-supplied-p)
|
---|
[3318] | 111 | (exponent 0)
|
---|
[3297] | 112 | &allow-other-keys
|
---|
[2390] | 113 | )
|
---|
[3329] | 114 | "The following INITIALIZE-INSTANCE method allows instance initialization
|
---|
| 115 | of a MONOM in a style similar to MAKE-ARRAY, e.g.:
|
---|
[3328] | 116 |
|
---|
[3788] | 117 | (MAKE-INSTANCE 'MONOM :EXPONENTS '(1 2 3)) --> #<MONOM EXPONENTS=#(1 2 3)>
|
---|
| 118 | (MAKE-INSTANCE 'MONOM :DIMENSION 3) --> #<MONOM EXPONENTS=#(0 0 0)>
|
---|
| 119 | (MAKE-INSTANCE 'MONOM :DIMENSION 3 :EXPONENT 7) --> #<MONOM EXPONENTS=#(7 7 7)>
|
---|
[3329] | 120 |
|
---|
| 121 | If both DIMENSION and EXPONENTS are supplied, they must be compatible,
|
---|
| 122 | i.e. the length of EXPONENTS must be equal DIMENSION. If EXPONENTS
|
---|
| 123 | is not supplied, a monom with repeated value EXPONENT is created.
|
---|
| 124 | By default EXPONENT is 0, which results in a constant monomial.
|
---|
[3328] | 125 | "
|
---|
[3315] | 126 | (cond
|
---|
| 127 | (exponents-supplied-p
|
---|
[3327] | 128 | (when (and dimension-supplied-p
|
---|
| 129 | (/= dimension (length exponents)))
|
---|
| 130 | (error "EXPONENTS (~A) must have supplied length DIMENSION (~A)"
|
---|
| 131 | exponents dimension))
|
---|
[3315] | 132 | (let ((dim (length exponents)))
|
---|
| 133 | (setf (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
|
---|
[3321] | 134 | (dimension-supplied-p
|
---|
[3315] | 135 | ;; when all exponents are to be identical
|
---|
[3321] | 136 | (setf (slot-value self 'exponents) (make-array (list dimension)
|
---|
| 137 | :initial-element exponent
|
---|
| 138 | :element-type 'exponent)))
|
---|
| 139 | (t
|
---|
| 140 | (error "Initarg DIMENSION or EXPONENTS must be supplied."))))
|
---|
[3293] | 141 |
|
---|
[3807] | 142 | (defgeneric monom-dimension (self)
|
---|
| 143 | (:method ((self monom))
|
---|
| 144 | (length (monom-exponents self))))
|
---|
[3317] | 145 |
|
---|
[4235] | 146 | (defmethod universal-equalp ((self monom) (other monom))
|
---|
| 147 | "Returns T iff monomials SELF and OTHER have identical EXPONENTS."
|
---|
[4236] | 148 | (equalp (monom-exponents self) (monom-exponents other)))
|
---|
[2547] | 149 |
|
---|
[3443] | 150 | (defgeneric monom-elt (m index)
|
---|
[3574] | 151 | (:documentation "Return the power in the monomial M of variable number INDEX.")
|
---|
[3443] | 152 | (:method ((m monom) index)
|
---|
[3550] | 153 | "Return the power in the monomial M of variable number INDEX."
|
---|
[3443] | 154 | (with-slots (exponents)
|
---|
| 155 | m
|
---|
| 156 | (elt exponents index))))
|
---|
[48] | 157 |
|
---|
[3443] | 158 | (defgeneric (setf monom-elt) (new-value m index)
|
---|
[3550] | 159 | (:documentation "Set the power in the monomial M of variable number INDEX.")
|
---|
[3443] | 160 | (:method (new-value (m monom) index)
|
---|
| 161 | (with-slots (exponents)
|
---|
| 162 | m
|
---|
[3453] | 163 | (setf (elt exponents index) new-value))))
|
---|
[2023] | 164 |
|
---|
[3551] | 165 | (defgeneric total-degree (m &optional start end)
|
---|
| 166 | (:documentation "Return the total degree of a monomoal M. Optinally, a range
|
---|
[3449] | 167 | of variables may be specified with arguments START and END.")
|
---|
| 168 | (:method ((m monom) &optional (start 0) (end (monom-dimension m)))
|
---|
| 169 | (declare (type fixnum start end))
|
---|
| 170 | (with-slots (exponents)
|
---|
| 171 | m
|
---|
| 172 | (reduce #'+ exponents :start start :end end))))
|
---|
[48] | 173 |
|
---|
[3552] | 174 | (defgeneric sugar (m &optional start end)
|
---|
[3446] | 175 | (:documentation "Return the sugar of a monomial M. Optinally, a range
|
---|
| 176 | of variables may be specified with arguments START and END.")
|
---|
| 177 | (:method ((m monom) &optional (start 0) (end (monom-dimension m)))
|
---|
| 178 | (declare (type fixnum start end))
|
---|
[3552] | 179 | (total-degree m start end)))
|
---|
[48] | 180 |
|
---|
[4240] | 181 | (defmethod multiply-by ((self monom) (other monom))
|
---|
| 182 | (with-slots ((exponents1 exponents))
|
---|
| 183 | self
|
---|
| 184 | (with-slots ((exponents2 exponents))
|
---|
| 185 | other
|
---|
| 186 | (unless (= (length exponents1) (length exponents2))
|
---|
| 187 | (error "Incompatible dimensions"))
|
---|
| 188 | (map-into exponents1 #'+ exponents1 exponents2)))
|
---|
| 189 | self)
|
---|
[2069] | 190 |
|
---|
[4093] | 191 | (defun multiply (factor &rest more-factors)
|
---|
| 192 | "Successively multiplies factor FACTOR by the remaining arguments
|
---|
[4097] | 193 | MORE-FACTORS, using MULTIPLY-BY to multiply two factors. Thus
|
---|
| 194 | FACTOR may be destructively modified."
|
---|
[4099] | 195 | (reduce #'multiply-by more-factors :initial-value (copy-instance factor)))
|
---|
[4093] | 196 |
|
---|
[4240] | 197 | (defmethod divide-by ((self monom) (other monom))
|
---|
| 198 | (with-slots ((exponents1 exponents))
|
---|
| 199 | self
|
---|
| 200 | (with-slots ((exponents2 exponents))
|
---|
| 201 | other
|
---|
| 202 | (unless (= (length exponents1) (length exponents2))
|
---|
| 203 | (error "divide-by: Incompatible dimensions."))
|
---|
| 204 | (unless (every #'>= exponents1 exponents2)
|
---|
| 205 | (error "divide-by: Negative power would result."))
|
---|
| 206 | (map-into exponents1 #'- exponents1 exponents2)))
|
---|
| 207 | self)
|
---|
[2818] | 208 |
|
---|
[3448] | 209 | (defmethod copy-instance :around ((object monom) &rest initargs &key &allow-other-keys)
|
---|
[4129] | 210 | "An :AROUND method of COPY-INSTANCE. It replaces exponents with a fresh copy of the sequence."
|
---|
[4130] | 211 | (declare (ignore object initargs))
|
---|
| 212 | (let ((copy (call-next-method)))
|
---|
| 213 | (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
|
---|
| 214 | copy))
|
---|
[2950] | 215 |
|
---|
[4240] | 216 | (defmethod unary-inverse :before ((self monom))
|
---|
| 217 | (assert (zerop (total-degree self))
|
---|
| 218 | nil
|
---|
| 219 | "Monom ~A must have total degree 0 to be invertible.")
|
---|
| 220 | self)
|
---|
[4032] | 221 |
|
---|
[4240] | 222 | (defmethod unary-inverse ((self monom)) self)
|
---|
| 223 |
|
---|
[3849] | 224 | (defun divide (numerator &rest denominators)
|
---|
[4096] | 225 | "Successively divides NUMERATOR by elements of DENOMINATORS. The operation
|
---|
| 226 | destructively modifies NUMERATOR."
|
---|
[3849] | 227 | (cond ((endp denominators)
|
---|
[4030] | 228 | (unary-inverse numerator))
|
---|
[4100] | 229 | (t (reduce #'divide-by denominators :initial-value (copy-instance numerator)))))
|
---|
[48] | 230 |
|
---|
[3591] | 231 | (defgeneric divides-p (object1 object2)
|
---|
| 232 | (:documentation "Returns T if OBJECT1 divides OBJECT2.")
|
---|
| 233 | (:method ((m1 monom) (m2 monom))
|
---|
| 234 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
| 235 | (with-slots ((exponents1 exponents))
|
---|
| 236 | m1
|
---|
| 237 | (with-slots ((exponents2 exponents))
|
---|
| 238 | m2
|
---|
| 239 | (every #'<= exponents1 exponents2)))))
|
---|
[48] | 240 |
|
---|
[3585] | 241 | (defgeneric divides-lcm-p (object1 object2 object3)
|
---|
[3594] | 242 | (:documentation "Returns T if OBJECT1 divides LCM(OBJECT2,OBJECT3), NIL otherwise.")
|
---|
[3585] | 243 | (:method ((m1 monom) (m2 monom) (m3 monom))
|
---|
| 244 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[3596] | 245 | (with-slots ((exponents1 exponents))
|
---|
| 246 | m1
|
---|
| 247 | (with-slots ((exponents2 exponents))
|
---|
| 248 | m2
|
---|
| 249 | (with-slots ((exponents3 exponents))
|
---|
| 250 | m3
|
---|
| 251 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
| 252 | exponents1 exponents2 exponents3))))))
|
---|
[48] | 253 |
|
---|
[3588] | 254 | (defgeneric lcm-divides-lcm-p (object1 object2 object3 object4)
|
---|
| 255 | (:method ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
| 256 | "Returns T if monomial LCM(M1,M2) divides LCM(M3,M4), NIL otherwise."
|
---|
| 257 | (with-slots ((exponents1 exponents))
|
---|
| 258 | m1
|
---|
| 259 | (with-slots ((exponents2 exponents))
|
---|
| 260 | m2
|
---|
| 261 | (with-slots ((exponents3 exponents))
|
---|
| 262 | m3
|
---|
| 263 | (with-slots ((exponents4 exponents))
|
---|
| 264 | m4
|
---|
| 265 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
[3590] | 266 | exponents1 exponents2 exponents3 exponents4)))))))
|
---|
[869] | 267 |
|
---|
[3589] | 268 | (defgeneric monom-lcm-equal-lcm-p (object1 object2 object3 object4)
|
---|
| 269 | (:method ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
| 270 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
| 271 | (with-slots ((exponents1 exponents))
|
---|
| 272 | m1
|
---|
| 273 | (with-slots ((exponents2 exponents))
|
---|
| 274 | m2
|
---|
| 275 | (with-slots ((exponents3 exponents))
|
---|
| 276 | m3
|
---|
| 277 | (with-slots ((exponents4 exponents))
|
---|
| 278 | m4
|
---|
| 279 | (every
|
---|
| 280 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 281 | exponents1 exponents2 exponents3 exponents4)))))))
|
---|
[48] | 282 |
|
---|
[3563] | 283 | (defgeneric divisible-by-p (object1 object2)
|
---|
| 284 | (:documentation "Return T if OBJECT1 is divisible by OBJECT2.")
|
---|
| 285 | (:method ((m1 monom) (m2 monom))
|
---|
| 286 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
| 287 | (with-slots ((exponents1 exponents))
|
---|
| 288 | m1
|
---|
| 289 | (with-slots ((exponents2 exponents))
|
---|
| 290 | m2
|
---|
| 291 | (every #'>= exponents1 exponents2)))))
|
---|
[2078] | 292 |
|
---|
[3565] | 293 | (defgeneric rel-prime-p (object1 object2)
|
---|
[3575] | 294 | (:documentation "Returns T if objects OBJECT1 and OBJECT2 are relatively prime.")
|
---|
[3563] | 295 | (:method ((m1 monom) (m2 monom))
|
---|
| 296 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
| 297 | (with-slots ((exponents1 exponents))
|
---|
| 298 | m1
|
---|
| 299 | (with-slots ((exponents2 exponents))
|
---|
| 300 | m2
|
---|
| 301 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2)))))
|
---|
[48] | 302 |
|
---|
[3595] | 303 | (defgeneric universal-lcm (object1 object2)
|
---|
[3566] | 304 | (:documentation "Returns the multiple of objects OBJECT1 and OBJECT2.")
|
---|
| 305 | (:method ((m1 monom) (m2 monom))
|
---|
| 306 | "Returns least common multiple of monomials M1 and M2."
|
---|
| 307 | (with-slots ((exponents1 exponents))
|
---|
| 308 | m1
|
---|
| 309 | (with-slots ((exponents2 exponents))
|
---|
| 310 | m2
|
---|
| 311 | (let* ((exponents (copy-seq exponents1)))
|
---|
| 312 | (map-into exponents #'max exponents1 exponents2)
|
---|
| 313 | (make-instance 'monom :exponents exponents))))))
|
---|
[48] | 314 |
|
---|
[2080] | 315 |
|
---|
[4253] | 316 | (defmethod universal-gcd ((m1 monom) (m2 monom))
|
---|
| 317 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
| 318 | (with-slots ((exponents1 exponents))
|
---|
| 319 | m1
|
---|
| 320 | (with-slots ((exponents2 exponents))
|
---|
| 321 | m2
|
---|
| 322 | (let* ((exponents (copy-seq exponents1)))
|
---|
| 323 | (map-into exponents #'min exponents1 exponents2)
|
---|
| 324 | (make-instance 'monom :exponents exponents)))))
|
---|
[48] | 325 |
|
---|
[3569] | 326 | (defgeneric depends-p (object k)
|
---|
| 327 | (:documentation "Returns T iff object OBJECT depends on variable K.")
|
---|
| 328 | (:method ((m monom) k)
|
---|
| 329 | "Return T if the monomial M depends on variable number K."
|
---|
| 330 | (declare (type fixnum k))
|
---|
| 331 | (with-slots (exponents)
|
---|
| 332 | m
|
---|
| 333 | (plusp (elt exponents k)))))
|
---|
[48] | 334 |
|
---|
[3570] | 335 | (defgeneric left-tensor-product-by (self other)
|
---|
| 336 | (:documentation "Returns a tensor product SELF by OTHER, stored into
|
---|
| 337 | SELF. Return SELF.")
|
---|
| 338 | (:method ((self monom) (other monom))
|
---|
| 339 | (with-slots ((exponents1 exponents))
|
---|
| 340 | self
|
---|
| 341 | (with-slots ((exponents2 exponents))
|
---|
| 342 | other
|
---|
| 343 | (setf exponents1 (concatenate 'vector exponents2 exponents1))))
|
---|
| 344 | self))
|
---|
[48] | 345 |
|
---|
[3570] | 346 | (defgeneric right-tensor-product-by (self other)
|
---|
| 347 | (:documentation "Returns a tensor product of OTHER by SELF, stored
|
---|
| 348 | into SELF. Returns SELF.")
|
---|
| 349 | (:method ((self monom) (other monom))
|
---|
| 350 | (with-slots ((exponents1 exponents))
|
---|
| 351 | self
|
---|
| 352 | (with-slots ((exponents2 exponents))
|
---|
| 353 | other
|
---|
| 354 | (setf exponents1 (concatenate 'vector exponents1 exponents2))))
|
---|
| 355 | self))
|
---|
[3026] | 356 |
|
---|
[3571] | 357 | (defgeneric left-contract (self k)
|
---|
| 358 | (:documentation "Drop the first K variables in object SELF.")
|
---|
| 359 | (:method ((self monom) k)
|
---|
| 360 | "Drop the first K variables in monomial M."
|
---|
| 361 | (declare (fixnum k))
|
---|
| 362 | (with-slots (exponents)
|
---|
| 363 | self
|
---|
| 364 | (setf exponents (subseq exponents k)))
|
---|
| 365 | self))
|
---|
[886] | 366 |
|
---|
| 367 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 368 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 369 | "Construct a monomial in the polynomial ring
|
---|
| 370 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 371 | which represents a single variable. It assumes number of variables
|
---|
| 372 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 373 | may appear raised to power POWER. "
|
---|
[1924] | 374 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 375 | (with-slots (exponents)
|
---|
| 376 | m
|
---|
[2154] | 377 | (setf (elt exponents pos) power)
|
---|
[2089] | 378 | m))
|
---|
[1151] | 379 |
|
---|
[3811] | 380 | (defun make-monom-constant (dimension)
|
---|
| 381 | (make-instance 'monom :dimension dimension))
|
---|
| 382 |
|
---|
[3474] | 383 | ;; pure lexicographic
|
---|
[3472] | 384 | (defgeneric lex> (p q &optional start end)
|
---|
| 385 | (:documentation "Return T if P>Q with respect to lexicographic
|
---|
| 386 | order, otherwise NIL. The second returned value is T if P=Q,
|
---|
| 387 | otherwise it is NIL.")
|
---|
[3483] | 388 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 389 | (declare (type fixnum start end))
|
---|
| 390 | (do ((i start (1+ i)))
|
---|
| 391 | ((>= i end) (values nil t))
|
---|
| 392 | (cond
|
---|
[3483] | 393 | ((> (monom-elt p i) (monom-elt q i))
|
---|
[3472] | 394 | (return-from lex> (values t nil)))
|
---|
[3483] | 395 | ((< (monom-elt p i) (monom-elt q i))
|
---|
[3472] | 396 | (return-from lex> (values nil nil)))))))
|
---|
| 397 |
|
---|
[3475] | 398 | ;; total degree order, ties broken by lexicographic
|
---|
[3472] | 399 | (defgeneric grlex> (p q &optional start end)
|
---|
| 400 | (:documentation "Return T if P>Q with respect to graded
|
---|
| 401 | lexicographic order, otherwise NIL. The second returned value is T if
|
---|
| 402 | P=Q, otherwise it is NIL.")
|
---|
[3483] | 403 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 404 | (declare (type monom p q) (type fixnum start end))
|
---|
[3583] | 405 | (let ((d1 (total-degree p start end))
|
---|
| 406 | (d2 (total-degree q start end)))
|
---|
[3472] | 407 | (declare (type fixnum d1 d2))
|
---|
| 408 | (cond
|
---|
| 409 | ((> d1 d2) (values t nil))
|
---|
| 410 | ((< d1 d2) (values nil nil))
|
---|
| 411 | (t
|
---|
| 412 | (lex> p q start end))))))
|
---|
| 413 |
|
---|
| 414 | ;; reverse lexicographic
|
---|
| 415 | (defgeneric revlex> (p q &optional start end)
|
---|
| 416 | (:documentation "Return T if P>Q with respect to reverse
|
---|
| 417 | lexicographic order, NIL otherwise. The second returned value is T if
|
---|
| 418 | P=Q, otherwise it is NIL. This is not and admissible monomial order
|
---|
| 419 | because some sets do not have a minimal element. This order is useful
|
---|
| 420 | in constructing other orders.")
|
---|
[3483] | 421 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 422 | (declare (type fixnum start end))
|
---|
| 423 | (do ((i (1- end) (1- i)))
|
---|
| 424 | ((< i start) (values nil t))
|
---|
| 425 | (declare (type fixnum i))
|
---|
| 426 | (cond
|
---|
[3483] | 427 | ((< (monom-elt p i) (monom-elt q i))
|
---|
[3472] | 428 | (return-from revlex> (values t nil)))
|
---|
[3483] | 429 | ((> (monom-elt p i) (monom-elt q i))
|
---|
[3472] | 430 | (return-from revlex> (values nil nil)))))))
|
---|
| 431 |
|
---|
| 432 |
|
---|
| 433 | ;; total degree, ties broken by reverse lexicographic
|
---|
| 434 | (defgeneric grevlex> (p q &optional start end)
|
---|
| 435 | (:documentation "Return T if P>Q with respect to graded reverse
|
---|
| 436 | lexicographic order, NIL otherwise. The second returned value is T if
|
---|
| 437 | P=Q, otherwise it is NIL.")
|
---|
[3483] | 438 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 439 | (declare (type fixnum start end))
|
---|
[3584] | 440 | (let ((d1 (total-degree p start end))
|
---|
| 441 | (d2 (total-degree q start end)))
|
---|
[3472] | 442 | (declare (type fixnum d1 d2))
|
---|
| 443 | (cond
|
---|
| 444 | ((> d1 d2) (values t nil))
|
---|
| 445 | ((< d1 d2) (values nil nil))
|
---|
| 446 | (t
|
---|
| 447 | (revlex> p q start end))))))
|
---|
| 448 |
|
---|
| 449 | (defgeneric invlex> (p q &optional start end)
|
---|
| 450 | (:documentation "Return T if P>Q with respect to inverse
|
---|
| 451 | lexicographic order, NIL otherwise The second returned value is T if
|
---|
| 452 | P=Q, otherwise it is NIL.")
|
---|
[3483] | 453 | (:method ((p monom) (q monom) &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 454 | (declare (type fixnum start end))
|
---|
| 455 | (do ((i (1- end) (1- i)))
|
---|
| 456 | ((< i start) (values nil t))
|
---|
| 457 | (declare (type fixnum i))
|
---|
| 458 | (cond
|
---|
[3483] | 459 | ((> (monom-elt p i) (monom-elt q i))
|
---|
[3472] | 460 | (return-from invlex> (values t nil)))
|
---|
[3483] | 461 | ((< (monom-elt p i) (monom-elt q i))
|
---|
[3472] | 462 | (return-from invlex> (values nil nil)))))))
|
---|
| 463 |
|
---|
| 464 | (defun reverse-monomial-order (order)
|
---|
| 465 | "Create the inverse monomial order to the given monomial order ORDER."
|
---|
[3483] | 466 | #'(lambda (p q &optional (start 0) (end (monom-dimension q)))
|
---|
[3472] | 467 | (declare (type monom p q) (type fixnum start end))
|
---|
| 468 | (funcall order q p start end)))
|
---|
| 469 |
|
---|
| 470 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 471 | ;;
|
---|
| 472 | ;; Order making functions
|
---|
| 473 | ;;
|
---|
| 474 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 475 |
|
---|
| 476 | ;; This returns a closure with the same signature
|
---|
| 477 | ;; as all orders such as #'LEX>.
|
---|
[3487] | 478 | (defun make-elimination-order-factory-1 (&optional (secondary-elimination-order #'lex>))
|
---|
[3472] | 479 | "It constructs an elimination order used for the 1-st elimination ideal,
|
---|
| 480 | i.e. for eliminating the first variable. Thus, the order compares the degrees of the
|
---|
| 481 | first variable in P and Q first, with ties broken by SECONDARY-ELIMINATION-ORDER."
|
---|
[3483] | 482 | #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 483 | (declare (type monom p q) (type fixnum start end))
|
---|
| 484 | (cond
|
---|
[3483] | 485 | ((> (monom-elt p start) (monom-elt q start))
|
---|
[3472] | 486 | (values t nil))
|
---|
[3483] | 487 | ((< (monom-elt p start) (monom-elt q start))
|
---|
[3472] | 488 | (values nil nil))
|
---|
| 489 | (t
|
---|
| 490 | (funcall secondary-elimination-order p q (1+ start) end)))))
|
---|
| 491 |
|
---|
| 492 | ;; This returns a closure which is called with an integer argument.
|
---|
| 493 | ;; The result is *another closure* with the same signature as all
|
---|
| 494 | ;; orders such as #'LEX>.
|
---|
[3486] | 495 | (defun make-elimination-order-factory (&optional
|
---|
[3472] | 496 | (primary-elimination-order #'lex>)
|
---|
| 497 | (secondary-elimination-order #'lex>))
|
---|
| 498 | "Return a function with a single integer argument K. This should be
|
---|
| 499 | the number of initial K variables X[0],X[1],...,X[K-1], which precede
|
---|
| 500 | remaining variables. The call to the closure creates a predicate
|
---|
| 501 | which compares monomials according to the K-th elimination order. The
|
---|
| 502 | monomial orders PRIMARY-ELIMINATION-ORDER and
|
---|
| 503 | SECONDARY-ELIMINATION-ORDER are used to compare the first K and the
|
---|
| 504 | remaining variables, respectively, with ties broken by lexicographical
|
---|
| 505 | order. That is, if PRIMARY-ELIMINATION-ORDER yields (VALUES NIL T),
|
---|
| 506 | which indicates that the first K variables appear with identical
|
---|
| 507 | powers, then the result is that of a call to
|
---|
| 508 | SECONDARY-ELIMINATION-ORDER applied to the remaining variables
|
---|
| 509 | X[K],X[K+1],..."
|
---|
| 510 | #'(lambda (k)
|
---|
| 511 | (cond
|
---|
| 512 | ((<= k 0)
|
---|
| 513 | (error "K must be at least 1"))
|
---|
| 514 | ((= k 1)
|
---|
[3485] | 515 | (make-elimination-order-factory-1 secondary-elimination-order))
|
---|
[3472] | 516 | (t
|
---|
[3483] | 517 | #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
|
---|
[3472] | 518 | (declare (type monom p q) (type fixnum start end))
|
---|
| 519 | (multiple-value-bind (primary equal)
|
---|
| 520 | (funcall primary-elimination-order p q start k)
|
---|
| 521 | (if equal
|
---|
| 522 | (funcall secondary-elimination-order p q k end)
|
---|
| 523 | (values primary nil))))))))
|
---|
| 524 |
|
---|
[3531] | 525 | (defclass term (monom)
|
---|
[4241] | 526 | ((coeff :initarg :coeff :initform 1 :accessor term-coeff :type ring))
|
---|
[4226] | 527 | (:default-initargs :coeff 1)
|
---|
[3531] | 528 | (:documentation "Implements a term, i.e. a product of a scalar
|
---|
| 529 | and powers of some variables, such as 5*X^2*Y^3."))
|
---|
| 530 |
|
---|
[4242] | 531 | (defmethod shared-initialize :around ((self term) slot-names &rest initargs &key (coeff 1))
|
---|
[4226] | 532 | "A convenience method. If a coefficient is an integer, wrap it in the INTEGER-RING object"
|
---|
[4242] | 533 | ;; Dispatch on the type of supplied :COEFF arg
|
---|
[4226] | 534 | (typecase coeff
|
---|
| 535 | (integer
|
---|
[4282] | 536 | (setf (getf initargs :coeff) (make-instance 'integer-ring :value coeff)))
|
---|
| 537 | (rational
|
---|
| 538 | (setf (getf initargs :coeff) (make-instance 'rational-field :value coeff))))
|
---|
[4226] | 539 | ;; Now pass new initargs to the next method
|
---|
[4242] | 540 | (apply #'call-next-method (list* self slot-names initargs)))
|
---|
| 541 |
|
---|
[4226] | 542 |
|
---|
[4243] | 543 | (defmethod update-instance-for-different-class :after ((old monom) (new term) &key (coeff 1))
|
---|
[3794] | 544 | "Converts OLD of class MONOM to a NEW of class TERM, initializing coefficient to COEFF."
|
---|
[3792] | 545 | (reinitialize-instance new :coeff coeff))
|
---|
[3785] | 546 |
|
---|
[3876] | 547 | (defmethod update-instance-for-different-class :after ((old term) (new term) &key (coeff (term-coeff old)))
|
---|
| 548 | "Converts OLD of class TERM to a NEW of class TERM, initializing coefficient to COEFF."
|
---|
| 549 | (reinitialize-instance new :coeff coeff))
|
---|
[3875] | 550 |
|
---|
[3876] | 551 |
|
---|
[3531] | 552 | (defmethod print-object ((self term) stream)
|
---|
| 553 | (print-unreadable-object (self stream :type t :identity t)
|
---|
| 554 | (with-accessors ((exponents monom-exponents)
|
---|
[3532] | 555 | (coeff term-coeff))
|
---|
[3531] | 556 | self
|
---|
| 557 | (format stream "EXPONENTS=~A COEFF=~A"
|
---|
| 558 | exponents coeff))))
|
---|
| 559 |
|
---|
[4127] | 560 | (defmethod copy-instance :around ((object term) &rest initargs &key &allow-other-keys)
|
---|
| 561 | "An :AROUND method of COPY-INSTANCE. It replaces the coefficient with a fresh copy."
|
---|
| 562 | (declare (ignore object initargs))
|
---|
| 563 | (let ((copy (call-next-method)))
|
---|
[4128] | 564 | (setf (term-coeff copy) (copy-instance (term-coeff object)))
|
---|
[4127] | 565 | copy))
|
---|
| 566 |
|
---|
[3846] | 567 | (defmethod multiply-by ((self term) (other number))
|
---|
[4091] | 568 | (reinitialize-instance self :coeff (multiply-by (term-coeff self) other)))
|
---|
[3846] | 569 |
|
---|
[3845] | 570 | (defmethod divide-by ((self term) (other number))
|
---|
[4091] | 571 | (reinitialize-instance self :coeff (divide-by (term-coeff self) other)))
|
---|
[3845] | 572 |
|
---|
[4037] | 573 | (defmethod unary-inverse :after ((self term))
|
---|
| 574 | (with-slots (coeff)
|
---|
| 575 | self
|
---|
| 576 | (setf coeff (unary-inverse coeff))))
|
---|
| 577 |
|
---|
[3812] | 578 | (defun make-term-constant (dimension &optional (coeff 1))
|
---|
| 579 | (make-instance 'term :dimension dimension :coeff coeff))
|
---|
| 580 |
|
---|
[3542] | 581 | (defmethod universal-equalp ((term1 term) (term2 term))
|
---|
| 582 | "Returns T if TERM1 and TERM2 are equal as MONOM, and coefficients
|
---|
| 583 | are UNIVERSAL-EQUALP."
|
---|
[3540] | 584 | (and (call-next-method)
|
---|
| 585 | (universal-equalp (term-coeff term1) (term-coeff term2))))
|
---|
[3531] | 586 |
|
---|
[3556] | 587 | (defmethod multiply-by :before ((self term) (other term))
|
---|
[3531] | 588 | "Destructively multiply terms SELF and OTHER and store the result into SELF.
|
---|
| 589 | It returns SELF."
|
---|
[3580] | 590 | (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other))))
|
---|
[3531] | 591 |
|
---|
[4093] | 592 |
|
---|
[3581] | 593 | (defmethod left-tensor-product-by :before ((self term) (other term))
|
---|
[3579] | 594 | (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other))))
|
---|
[3531] | 595 |
|
---|
[3581] | 596 | (defmethod right-tensor-product-by :before ((self term) (other term))
|
---|
[3556] | 597 | (setf (term-coeff self) (multiply-by (term-coeff self) (term-coeff other))))
|
---|
[3531] | 598 |
|
---|
[3556] | 599 | (defmethod divide-by :before ((self term) (other term))
|
---|
| 600 | (setf (term-coeff self) (divide-by (term-coeff self) (term-coeff other))))
|
---|
[3531] | 601 |
|
---|
[4240] | 602 | (defmethod unary-minus ((self term))
|
---|
| 603 | (setf (term-coeff self) (unary-minus (term-coeff self)))
|
---|
| 604 | self)
|
---|
[3531] | 605 |
|
---|
[4241] | 606 | (defmethod universal-zerop ((self term))
|
---|
| 607 | (universal-zerop (term-coeff self)))
|
---|
[3823] | 608 |
|
---|
| 609 | (defgeneric ->list (self)
|
---|
| 610 | (:method ((self monom))
|
---|
| 611 | "A human-readable representation of a monomial SELF as a list of exponents."
|
---|
| 612 | (coerce (monom-exponents self) 'list))
|
---|
| 613 | (:method ((self term))
|
---|
| 614 | "A human-readable representation of a term SELF as a cons of the list of exponents and the coefficient."
|
---|
[4239] | 615 | (cons (coerce (monom-exponents self) 'list) (->sexp (term-coeff self)))))
|
---|
[3826] | 616 |
|
---|
[4241] | 617 | (defmethod ->sexp :before ((object monom) &optional vars)
|
---|
| 618 | "Check the length of variables VARS against the length of exponents in OBJECT."
|
---|
| 619 | (with-slots (exponents)
|
---|
| 620 | object
|
---|
| 621 | (assert (= (length vars) (length exponents))
|
---|
| 622 | nil
|
---|
| 623 | "Variables ~A and exponents ~A must have the same length." vars exponents)))
|
---|
| 624 |
|
---|
| 625 | (defmethod ->sexp ((object monom) &optional vars)
|
---|
| 626 | "Convert a monomial OBJECT to infix form, using variable VARS to build the representation."
|
---|
[3828] | 627 | (with-slots (exponents)
|
---|
[4168] | 628 | object
|
---|
[4010] | 629 | (let ((m (mapcan #'(lambda (var power)
|
---|
| 630 | (cond ((= power 0) nil)
|
---|
| 631 | ((= power 1) (list var))
|
---|
| 632 | (t (list `(expt ,var ,power)))))
|
---|
| 633 | vars (coerce exponents 'list))))
|
---|
[4024] | 634 | (cond ((endp m) 1)
|
---|
| 635 | ((endp (cdr m)) (car m))
|
---|
[4010] | 636 | (t
|
---|
| 637 | (cons '* m))))))
|
---|
[4241] | 638 |
|
---|
| 639 | (defmethod ->sexp :around ((object term) &optional vars)
|
---|
| 640 | "Convert a term OBJECT to infix form, using variable VARS to build the representation."
|
---|
| 641 | (declare (ignore vars))
|
---|
| 642 | (with-slots (coeff)
|
---|
| 643 | object
|
---|
| 644 | (let ((monom-sexp (call-next-method))
|
---|
| 645 | (coeff-sexp (->sexp coeff)))
|
---|
| 646 | (cond ((eql coeff-sexp 1) monom-sexp)
|
---|
| 647 | ((atom monom-sexp)
|
---|
| 648 | (cond ((eql monom-sexp 1) coeff-sexp)
|
---|
| 649 | (t (list '* coeff-sexp monom-sexp))))
|
---|
| 650 | ((eql (car monom-sexp) '*)
|
---|
| 651 | (list* '* coeff-sexp (cdr monom-sexp)))
|
---|
| 652 | (t
|
---|
| 653 | (list '* coeff-sexp monom-sexp))))))
|
---|