[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 ()
|
---|
[3312] | 54 | ((exponents :initarg :exponents :accessor monom-exponents
|
---|
[3054] | 55 | :documentation "The powers of the variables."))
|
---|
[3289] | 56 | ;; default-initargs are not needed, they are handled by SHARED-INITIALIZE
|
---|
| 57 | ;;(:default-initargs :dimension 'foo :exponents 'bar :exponent 'baz)
|
---|
[2779] | 58 | (:documentation
|
---|
| 59 | "Implements a monomial, i.e. a product of powers
|
---|
| 60 | of variables, like X*Y^2."))
|
---|
[880] | 61 |
|
---|
[2245] | 62 | (defmethod print-object ((self monom) stream)
|
---|
[3196] | 63 | (print-unreadable-object (self stream :type t :identity t)
|
---|
[3313] | 64 | (with-accessors ((exponents monom-exponents))
|
---|
[3216] | 65 | self
|
---|
[3313] | 66 | (format stream "EXPONENTS=~A"
|
---|
| 67 | exponents))))
|
---|
[2027] | 68 |
|
---|
[3299] | 69 | (defmethod initialize-instance :after ((self monom)
|
---|
[3297] | 70 | &key
|
---|
| 71 | (dimension 0 dimension-supplied-p)
|
---|
| 72 | (exponents nil exponents-supplied-p)
|
---|
[3318] | 73 | (exponent 0)
|
---|
[3297] | 74 | &allow-other-keys
|
---|
[2390] | 75 | )
|
---|
[3329] | 76 | "The following INITIALIZE-INSTANCE method allows instance initialization
|
---|
| 77 | of a MONOM in a style similar to MAKE-ARRAY, e.g.:
|
---|
[3328] | 78 |
|
---|
| 79 | (MAKE-INSTANCE :EXPONENTS '(1 2 3)) --> #<MONOM EXPONENTS=#(1 2 3)>
|
---|
| 80 | (MAKE-INSTANCE :DIMENSION 3) --> #<MONOM EXPONENTS=#(0 0 0)>
|
---|
| 81 | (MAKE-INSTANCE :DIMENSION 3 :EXPONENT 7) --> #<MONOM EXPONENTS=#(7 7 7)>
|
---|
[3329] | 82 |
|
---|
| 83 | If both DIMENSION and EXPONENTS are supplied, they must be compatible,
|
---|
| 84 | i.e. the length of EXPONENTS must be equal DIMENSION. If EXPONENTS
|
---|
| 85 | is not supplied, a monom with repeated value EXPONENT is created.
|
---|
| 86 | By default EXPONENT is 0, which results in a constant monomial.
|
---|
[3328] | 87 | "
|
---|
[3315] | 88 | (cond
|
---|
| 89 | (exponents-supplied-p
|
---|
[3327] | 90 | (when (and dimension-supplied-p
|
---|
| 91 | (/= dimension (length exponents)))
|
---|
| 92 | (error "EXPONENTS (~A) must have supplied length DIMENSION (~A)"
|
---|
| 93 | exponents dimension))
|
---|
[3315] | 94 | (let ((dim (length exponents)))
|
---|
| 95 | (setf (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
|
---|
[3321] | 96 | (dimension-supplied-p
|
---|
[3315] | 97 | ;; when all exponents are to be identical
|
---|
[3321] | 98 | (setf (slot-value self 'exponents) (make-array (list dimension)
|
---|
| 99 | :initial-element exponent
|
---|
| 100 | :element-type 'exponent)))
|
---|
| 101 | (t
|
---|
| 102 | (error "Initarg DIMENSION or EXPONENTS must be supplied."))))
|
---|
[3293] | 103 |
|
---|
[3331] | 104 | (defmacro monom-dimension (m)
|
---|
| 105 | `(length (monom-exponents ,m)))
|
---|
[3317] | 106 |
|
---|
[2850] | 107 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[2778] | 108 | "Returns T iff monomials M1 and M2 have identical
|
---|
| 109 | EXPONENTS."
|
---|
[2779] | 110 | (equalp (monom-exponents m1) (monom-exponents m2)))
|
---|
[2547] | 111 |
|
---|
[2398] | 112 | (defmethod r-coeff ((m monom))
|
---|
| 113 | "A MONOM can be treated as a special case of TERM,
|
---|
| 114 | where the coefficient is 1."
|
---|
| 115 | 1)
|
---|
[2397] | 116 |
|
---|
[2143] | 117 | (defmethod r-elt ((m monom) index)
|
---|
[48] | 118 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 119 | (with-slots (exponents)
|
---|
| 120 | m
|
---|
[2154] | 121 | (elt exponents index)))
|
---|
[48] | 122 |
|
---|
[2160] | 123 | (defmethod (setf r-elt) (new-value (m monom) index)
|
---|
[2023] | 124 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 125 | (with-slots (exponents)
|
---|
| 126 | m
|
---|
[2154] | 127 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 128 |
|
---|
[2779] | 129 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (monom-dimension m)))
|
---|
[48] | 130 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 131 | of variables may be specified with arguments START and END."
|
---|
[2023] | 132 | (declare (type fixnum start end))
|
---|
| 133 | (with-slots (exponents)
|
---|
| 134 | m
|
---|
[2154] | 135 | (reduce #'+ exponents :start start :end end)))
|
---|
[48] | 136 |
|
---|
[2064] | 137 |
|
---|
[2779] | 138 | (defmethod r-sugar ((m monom) &aux (start 0) (end (monom-dimension m)))
|
---|
[48] | 139 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 140 | of variables may be specified with arguments START and END."
|
---|
[2032] | 141 | (declare (type fixnum start end))
|
---|
[2155] | 142 | (r-total-degree m start end))
|
---|
[48] | 143 |
|
---|
[2478] | 144 | (defmethod multiply-by ((self monom) (other monom))
|
---|
[3322] | 145 | (with-slots ((exponents1 exponents))
|
---|
[2478] | 146 | self
|
---|
[3322] | 147 | (with-slots ((exponents2 exponents))
|
---|
[2478] | 148 | other
|
---|
[3322] | 149 | (unless (= (length exponents1) (length exponents2))
|
---|
| 150 | (error "Incompatible dimensions"))
|
---|
[2811] | 151 | (map-into exponents1 #'+ exponents1 exponents2)))
|
---|
[2480] | 152 | self)
|
---|
[2069] | 153 |
|
---|
[2818] | 154 | (defmethod divide-by ((self monom) (other monom))
|
---|
[3322] | 155 | (with-slots ((exponents1 exponents))
|
---|
[2818] | 156 | self
|
---|
[3322] | 157 | (with-slots ((exponents2 exponents))
|
---|
[2818] | 158 | other
|
---|
[3322] | 159 | (unless (= (length exponents1) (length exponents2))
|
---|
[3409] | 160 | (error "divide-by: Incompatible dimensions."))
|
---|
| 161 | (unless (every #'>= exponents1 exponents2)
|
---|
[3410] | 162 | (error "divide-by: Negative power would result."))
|
---|
[2818] | 163 | (map-into exponents1 #'- exponents1 exponents2)))
|
---|
| 164 | self)
|
---|
| 165 |
|
---|
[3004] | 166 | (defmethod copy-instance :around ((object monom) &rest initargs &key &allow-other-keys)
|
---|
[3018] | 167 | "An :AROUNT method for COPY-INSTANCE. The primary method is a shallow copy,
|
---|
| 168 | while for monomials we typically need a fresh copy of the
|
---|
| 169 | exponents."
|
---|
[3004] | 170 | (declare (ignore object initargs))
|
---|
[3002] | 171 | (let ((copy (call-next-method)))
|
---|
[3003] | 172 | (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
|
---|
[3002] | 173 | copy))
|
---|
[2950] | 174 |
|
---|
[2816] | 175 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
| 176 | "Non-destructively multiply monomial M1 by M2."
|
---|
[3032] | 177 | (multiply-by (copy-instance m1) (copy-instance m2)))
|
---|
[2816] | 178 |
|
---|
[3416] | 179 | (defmethod r/ ((numerator monom) &rest denominators)
|
---|
| 180 | "Non-destructively divide monomial NUMERATOR by product of DENOMINATORS."
|
---|
[3417] | 181 | (divide-by (copy-instance numerator) (reduce #'r* denominators)))
|
---|
[48] | 182 |
|
---|
[2144] | 183 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 184 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 185 | (with-slots ((exponents1 exponents))
|
---|
| 186 | m1
|
---|
| 187 | (with-slots ((exponents2 exponents))
|
---|
| 188 | m2
|
---|
| 189 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 190 |
|
---|
[2075] | 191 |
|
---|
[2144] | 192 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 193 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 194 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 195 | m1 m2 m3))
|
---|
[48] | 196 |
|
---|
[2049] | 197 |
|
---|
[2144] | 198 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 199 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 200 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 201 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 202 | m1 m2 m3 m4))
|
---|
| 203 |
|
---|
[2144] | 204 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 205 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 206 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 207 | m1
|
---|
[2171] | 208 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 209 | m2
|
---|
[2171] | 210 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 211 | m3
|
---|
[2171] | 212 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 213 | m4
|
---|
[2077] | 214 | (every
|
---|
| 215 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 216 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 217 |
|
---|
[2144] | 218 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 219 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 220 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 221 | m1
|
---|
[2171] | 222 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 223 | m2
|
---|
| 224 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 225 |
|
---|
[2146] | 226 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 227 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 228 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 229 | m1
|
---|
[2171] | 230 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 231 | m2
|
---|
[2154] | 232 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 233 |
|
---|
[2076] | 234 |
|
---|
[2146] | 235 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 236 | "Returns least common multiple of monomials M1 and M2."
|
---|
[3322] | 237 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 238 | m1
|
---|
[2171] | 239 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 240 | m2
|
---|
[3324] | 241 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2082] | 242 | (map-into exponents #'max exponents1 exponents2)
|
---|
[3322] | 243 | (make-instance 'monom :exponents exponents)))))
|
---|
[48] | 244 |
|
---|
[2080] | 245 |
|
---|
[2146] | 246 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 247 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[3322] | 248 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 249 | m1
|
---|
[2171] | 250 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 251 | m2
|
---|
[3322] | 252 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2082] | 253 | (map-into exponents #'min exponents1 exponents2)
|
---|
[3322] | 254 | (make-instance 'monom :exponents exponents)))))
|
---|
[48] | 255 |
|
---|
[2146] | 256 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 257 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 258 | (declare (type fixnum k))
|
---|
| 259 | (with-slots (exponents)
|
---|
| 260 | m
|
---|
[2154] | 261 | (plusp (elt exponents k))))
|
---|
[48] | 262 |
|
---|
[3020] | 263 | (defmethod left-tensor-product-by ((self monom) (other monom))
|
---|
[3323] | 264 | (with-slots ((exponents1 exponents))
|
---|
[3020] | 265 | self
|
---|
[3323] | 266 | (with-slots ((exponents2 exponents))
|
---|
[3020] | 267 | other
|
---|
[3323] | 268 | (setf exponents1 (concatenate 'vector exponents2 exponents1))))
|
---|
[3036] | 269 | self)
|
---|
[48] | 270 |
|
---|
[3026] | 271 | (defmethod right-tensor-product-by ((self monom) (other monom))
|
---|
[3323] | 272 | (with-slots ((exponents1 exponents))
|
---|
[3026] | 273 | self
|
---|
[3323] | 274 | (with-slots ((exponents2 exponents))
|
---|
[3026] | 275 | other
|
---|
[3323] | 276 | (setf exponents1 (concatenate 'vector exponents1 exponents2))))
|
---|
[3036] | 277 | self)
|
---|
[3026] | 278 |
|
---|
[3039] | 279 | (defmethod left-contract ((self monom) k)
|
---|
[1638] | 280 | "Drop the first K variables in monomial M."
|
---|
[2085] | 281 | (declare (fixnum k))
|
---|
[3323] | 282 | (with-slots (exponents)
|
---|
[3040] | 283 | self
|
---|
[3323] | 284 | (setf exponents (subseq exponents k)))
|
---|
[3039] | 285 | self)
|
---|
[886] | 286 |
|
---|
| 287 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 288 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 289 | "Construct a monomial in the polynomial ring
|
---|
| 290 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 291 | which represents a single variable. It assumes number of variables
|
---|
| 292 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 293 | may appear raised to power POWER. "
|
---|
[1924] | 294 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 295 | (with-slots (exponents)
|
---|
| 296 | m
|
---|
[2154] | 297 | (setf (elt exponents pos) power)
|
---|
[2089] | 298 | m))
|
---|
[1151] | 299 |
|
---|
[2150] | 300 | (defmethod r->list ((m monom))
|
---|
[1152] | 301 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2779] | 302 | (coerce (monom-exponents m) 'list))
|
---|
[2780] | 303 |
|
---|
[2783] | 304 | (defmethod r-dimension ((self monom))
|
---|
| 305 | (monom-dimension self))
|
---|
| 306 |
|
---|
[2780] | 307 | (defmethod r-exponents ((self monom))
|
---|
| 308 | (monom-exponents self))
|
---|