[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"
|
---|
[2025] | 23 | (:use :cl :ring)
|
---|
[422] | 24 | (:export "MONOM"
|
---|
[423] | 25 | "EXPONENT"
|
---|
[2781] | 26 | "MONOM-DIMENSION"
|
---|
| 27 | "MONOM-EXPONENTS"
|
---|
[2524] | 28 | "MAKE-MONOM-VARIABLE")
|
---|
| 29 | (:documentation
|
---|
| 30 | "This package implements basic operations on monomials.
|
---|
| 31 | DATA STRUCTURES: Conceptually, monomials can be represented as lists:
|
---|
[81] | 32 |
|
---|
[2524] | 33 | monom: (n1 n2 ... nk) where ni are non-negative integers
|
---|
| 34 |
|
---|
| 35 | However, lists may be implemented as other sequence types, so the
|
---|
| 36 | flexibility to change the representation should be maintained in the
|
---|
| 37 | code to use general operations on sequences whenever possible. The
|
---|
| 38 | optimization for the actual representation should be left to
|
---|
| 39 | declarations and the compiler.
|
---|
| 40 |
|
---|
| 41 | EXAMPLES: Suppose that variables are x and y. Then
|
---|
| 42 |
|
---|
| 43 | Monom x*y^2 ---> (1 2) "))
|
---|
| 44 |
|
---|
[1610] | 45 | (in-package :monom)
|
---|
[48] | 46 |
|
---|
[1925] | 47 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[1923] | 48 |
|
---|
[48] | 49 | (deftype exponent ()
|
---|
| 50 | "Type of exponent in a monomial."
|
---|
| 51 | 'fixnum)
|
---|
| 52 |
|
---|
[2022] | 53 | (defclass monom ()
|
---|
[3054] | 54 | ((dimension :initarg :dimension :accessor monom-dimension
|
---|
| 55 | :documentation "The number of variables.")
|
---|
| 56 | (exponents :initarg :exponents :accessor monom-exponents
|
---|
| 57 | :documentation "The powers of the variables."))
|
---|
[2779] | 58 | (:default-initargs :dimension nil :exponents nil :exponent nil)
|
---|
| 59 | (:documentation
|
---|
| 60 | "Implements a monomial, i.e. a product of powers
|
---|
| 61 | of variables, like X*Y^2."))
|
---|
[880] | 62 |
|
---|
[2245] | 63 | (defmethod print-object ((self monom) stream)
|
---|
| 64 | (format stream "#<MONOM DIMENSION=~A EXPONENTS=~A>"
|
---|
[2779] | 65 | (monom-dimension self)
|
---|
| 66 | (monom-exponents self)))
|
---|
[2027] | 67 |
|
---|
[2390] | 68 | (defmethod shared-initialize :after ((self monom) slot-names
|
---|
| 69 | &key
|
---|
| 70 | dimension
|
---|
| 71 | exponents
|
---|
| 72 | exponent
|
---|
| 73 | &allow-other-keys
|
---|
| 74 | )
|
---|
[2354] | 75 | (if (eq slot-names t) (setf slot-names '(dimension exponents)))
|
---|
| 76 | (dolist (slot-name slot-names)
|
---|
[2357] | 77 | (case slot-name
|
---|
[2354] | 78 | (dimension
|
---|
[2355] | 79 | (cond (dimension
|
---|
| 80 | (setf (slot-value self 'dimension) dimension))
|
---|
[2354] | 81 | (exponents
|
---|
| 82 | (setf (slot-value self 'dimension) (length exponents)))
|
---|
| 83 | (t
|
---|
| 84 | (error "DIMENSION or EXPONENTS must not be NIL"))))
|
---|
| 85 | (exponents
|
---|
| 86 | (cond
|
---|
| 87 | ;; when exponents are supplied
|
---|
| 88 | (exponents
|
---|
[2356] | 89 | (let ((dim (length exponents)))
|
---|
[2405] | 90 | (when (and dimension (/= dimension dim))
|
---|
| 91 | (error "EXPONENTS must have length DIMENSION"))
|
---|
[2356] | 92 | (setf (slot-value self 'dimension) dim
|
---|
| 93 | (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
|
---|
[2354] | 94 | ;; when all exponents are to be identical
|
---|
[2356] | 95 | (t
|
---|
| 96 | (let ((dim (slot-value self 'dimension)))
|
---|
| 97 | (setf (slot-value self 'exponents)
|
---|
| 98 | (make-array (list dim) :initial-element (or exponent 0)
|
---|
| 99 | :element-type 'exponent)))))))))
|
---|
[717] | 100 |
|
---|
[2850] | 101 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[2778] | 102 | "Returns T iff monomials M1 and M2 have identical
|
---|
| 103 | EXPONENTS."
|
---|
[2779] | 104 | (equalp (monom-exponents m1) (monom-exponents m2)))
|
---|
[2547] | 105 |
|
---|
[2398] | 106 | (defmethod r-coeff ((m monom))
|
---|
| 107 | "A MONOM can be treated as a special case of TERM,
|
---|
| 108 | where the coefficient is 1."
|
---|
| 109 | 1)
|
---|
[2397] | 110 |
|
---|
[2143] | 111 | (defmethod r-elt ((m monom) index)
|
---|
[48] | 112 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 113 | (with-slots (exponents)
|
---|
| 114 | m
|
---|
[2154] | 115 | (elt exponents index)))
|
---|
[48] | 116 |
|
---|
[2160] | 117 | (defmethod (setf r-elt) (new-value (m monom) index)
|
---|
[2023] | 118 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 119 | (with-slots (exponents)
|
---|
| 120 | m
|
---|
[2154] | 121 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 122 |
|
---|
[2779] | 123 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (monom-dimension m)))
|
---|
[48] | 124 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 125 | of variables may be specified with arguments START and END."
|
---|
[2023] | 126 | (declare (type fixnum start end))
|
---|
| 127 | (with-slots (exponents)
|
---|
| 128 | m
|
---|
[2154] | 129 | (reduce #'+ exponents :start start :end end)))
|
---|
[48] | 130 |
|
---|
[2064] | 131 |
|
---|
[2779] | 132 | (defmethod r-sugar ((m monom) &aux (start 0) (end (monom-dimension m)))
|
---|
[48] | 133 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 134 | of variables may be specified with arguments START and END."
|
---|
[2032] | 135 | (declare (type fixnum start end))
|
---|
[2155] | 136 | (r-total-degree m start end))
|
---|
[48] | 137 |
|
---|
[2478] | 138 | (defmethod multiply-by ((self monom) (other monom))
|
---|
[2807] | 139 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2478] | 140 | self
|
---|
[2811] | 141 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
[2478] | 142 | other
|
---|
[2811] | 143 | (unless (= dimension1 dimension2)
|
---|
[2813] | 144 | (error "Incompatible dimensions: ~A and ~A.~%" dimension1 dimension2))
|
---|
[2811] | 145 | (map-into exponents1 #'+ exponents1 exponents2)))
|
---|
[2480] | 146 | self)
|
---|
[2069] | 147 |
|
---|
[2818] | 148 | (defmethod divide-by ((self monom) (other monom))
|
---|
| 149 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
| 150 | self
|
---|
| 151 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
| 152 | other
|
---|
| 153 | (unless (= dimension1 dimension2)
|
---|
| 154 | (error "Incompatible dimensions: ~A and ~A.~%" dimension1 dimension2))
|
---|
| 155 | (map-into exponents1 #'- exponents1 exponents2)))
|
---|
| 156 | self)
|
---|
| 157 |
|
---|
[3004] | 158 | (defmethod copy-instance :around ((object monom) &rest initargs &key &allow-other-keys)
|
---|
[3018] | 159 | "An :AROUNT method for COPY-INSTANCE. The primary method is a shallow copy,
|
---|
| 160 | while for monomials we typically need a fresh copy of the
|
---|
| 161 | exponents."
|
---|
[3004] | 162 | (declare (ignore object initargs))
|
---|
[3002] | 163 | (let ((copy (call-next-method)))
|
---|
[3003] | 164 | (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
|
---|
[3002] | 165 | copy))
|
---|
[2950] | 166 |
|
---|
[2816] | 167 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
| 168 | "Non-destructively multiply monomial M1 by M2."
|
---|
[3032] | 169 | (multiply-by (copy-instance m1) (copy-instance m2)))
|
---|
[2816] | 170 |
|
---|
[2144] | 171 | (defmethod r/ ((m1 monom) (m2 monom))
|
---|
[2819] | 172 | "Non-destructively divide monomial M1 by monomial M2."
|
---|
[3032] | 173 | (divide-by (copy-instance m1) (copy-instance m2)))
|
---|
[48] | 174 |
|
---|
[2144] | 175 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 176 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 177 | (with-slots ((exponents1 exponents))
|
---|
| 178 | m1
|
---|
| 179 | (with-slots ((exponents2 exponents))
|
---|
| 180 | m2
|
---|
| 181 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 182 |
|
---|
[2075] | 183 |
|
---|
[2144] | 184 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 185 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 186 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 187 | m1 m2 m3))
|
---|
[48] | 188 |
|
---|
[2049] | 189 |
|
---|
[2144] | 190 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 191 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 192 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 193 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 194 | m1 m2 m3 m4))
|
---|
| 195 |
|
---|
[2144] | 196 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 197 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 198 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 199 | m1
|
---|
[2171] | 200 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 201 | m2
|
---|
[2171] | 202 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 203 | m3
|
---|
[2171] | 204 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 205 | m4
|
---|
[2077] | 206 | (every
|
---|
| 207 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 208 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 209 |
|
---|
[2144] | 210 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 211 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 212 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 213 | m1
|
---|
[2171] | 214 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 215 | m2
|
---|
| 216 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 217 |
|
---|
[2146] | 218 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 219 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 220 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 221 | m1
|
---|
[2171] | 222 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 223 | m2
|
---|
[2154] | 224 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 225 |
|
---|
[2076] | 226 |
|
---|
[2146] | 227 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 228 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2319] | 229 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 230 | m1
|
---|
[2171] | 231 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 232 | m2
|
---|
| 233 | (let* ((exponents (copy-seq exponents1))
|
---|
[2319] | 234 | (dimension dimension1))
|
---|
[2082] | 235 | (map-into exponents #'max exponents1 exponents2)
|
---|
[2200] | 236 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 237 |
|
---|
[2080] | 238 |
|
---|
[2146] | 239 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 240 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2320] | 241 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 242 | m1
|
---|
[2171] | 243 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 244 | m2
|
---|
| 245 | (let* ((exponents (copy-seq exponents1))
|
---|
[2320] | 246 | (dimension dimension1))
|
---|
[2082] | 247 | (map-into exponents #'min exponents1 exponents2)
|
---|
[2197] | 248 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 249 |
|
---|
[2146] | 250 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 251 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 252 | (declare (type fixnum k))
|
---|
| 253 | (with-slots (exponents)
|
---|
| 254 | m
|
---|
[2154] | 255 | (plusp (elt exponents k))))
|
---|
[48] | 256 |
|
---|
[3020] | 257 | (defmethod left-tensor-product-by ((self monom) (other monom))
|
---|
[2321] | 258 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[3020] | 259 | self
|
---|
[2321] | 260 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
[3020] | 261 | other
|
---|
| 262 | (setf dimension1 (+ dimension1 dimension2)
|
---|
[3036] | 263 | exponents1 (concatenate 'vector exponents2 exponents1))))
|
---|
| 264 | self)
|
---|
[48] | 265 |
|
---|
[3026] | 266 | (defmethod right-tensor-product-by ((self monom) (other monom))
|
---|
| 267 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
| 268 | self
|
---|
| 269 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
| 270 | other
|
---|
| 271 | (setf dimension1 (+ dimension1 dimension2)
|
---|
[3036] | 272 | exponents1 (concatenate 'vector exponents1 exponents2))))
|
---|
| 273 | self)
|
---|
[3026] | 274 |
|
---|
[3039] | 275 | (defmethod left-contract ((self monom) k)
|
---|
[1638] | 276 | "Drop the first K variables in monomial M."
|
---|
[2085] | 277 | (declare (fixnum k))
|
---|
[2196] | 278 | (with-slots (dimension exponents)
|
---|
[3040] | 279 | self
|
---|
[2197] | 280 | (setf dimension (- dimension k)
|
---|
[3039] | 281 | exponents (subseq exponents k)))
|
---|
| 282 | self)
|
---|
[886] | 283 |
|
---|
| 284 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 285 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 286 | "Construct a monomial in the polynomial ring
|
---|
| 287 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 288 | which represents a single variable. It assumes number of variables
|
---|
| 289 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 290 | may appear raised to power POWER. "
|
---|
[1924] | 291 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 292 | (with-slots (exponents)
|
---|
| 293 | m
|
---|
[2154] | 294 | (setf (elt exponents pos) power)
|
---|
[2089] | 295 | m))
|
---|
[1151] | 296 |
|
---|
[2150] | 297 | (defmethod r->list ((m monom))
|
---|
[1152] | 298 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2779] | 299 | (coerce (monom-exponents m) 'list))
|
---|
[2780] | 300 |
|
---|
[2783] | 301 | (defmethod r-dimension ((self monom))
|
---|
| 302 | (monom-dimension self))
|
---|
| 303 |
|
---|
[2780] | 304 | (defmethod r-exponents ((self monom))
|
---|
| 305 | (monom-exponents self))
|
---|