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