[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 |
|
---|
[418] | 22 | ;;----------------------------------------------------------------
|
---|
| 23 | ;; This package implements BASIC OPERATIONS ON MONOMIALS
|
---|
| 24 | ;;----------------------------------------------------------------
|
---|
| 25 | ;; DATA STRUCTURES: Conceptually, monomials can be represented as lists:
|
---|
| 26 | ;;
|
---|
| 27 | ;; monom: (n1 n2 ... nk) where ni are non-negative integers
|
---|
| 28 | ;;
|
---|
| 29 | ;; However, lists may be implemented as other sequence types,
|
---|
| 30 | ;; so the flexibility to change the representation should be
|
---|
| 31 | ;; maintained in the code to use general operations on sequences
|
---|
| 32 | ;; whenever possible. The optimization for the actual representation
|
---|
| 33 | ;; should be left to declarations and the compiler.
|
---|
| 34 | ;;----------------------------------------------------------------
|
---|
| 35 | ;; EXAMPLES: Suppose that variables are x and y. Then
|
---|
| 36 | ;;
|
---|
[714] | 37 | ;; Monom x*y^2 ---> (1 2)
|
---|
[418] | 38 | ;;
|
---|
| 39 | ;;----------------------------------------------------------------
|
---|
| 40 |
|
---|
[1610] | 41 | (defpackage "MONOM"
|
---|
[2025] | 42 | (:use :cl :ring)
|
---|
[422] | 43 | (:export "MONOM"
|
---|
[423] | 44 | "EXPONENT"
|
---|
[2124] | 45 | "MAKE-MONOM"
|
---|
[2125] | 46 | "MONOM-DIMENSION"
|
---|
[2124] | 47 | "MONOM-EXPONENTS"
|
---|
| 48 | "MAKE-MONOM-VARIABLE"))
|
---|
[81] | 49 |
|
---|
[1610] | 50 | (in-package :monom)
|
---|
[48] | 51 |
|
---|
[1925] | 52 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[1923] | 53 |
|
---|
[48] | 54 | (deftype exponent ()
|
---|
| 55 | "Type of exponent in a monomial."
|
---|
| 56 | 'fixnum)
|
---|
| 57 |
|
---|
[2022] | 58 | (defclass monom ()
|
---|
[2193] | 59 | ((dimension :initarg :dimension :accessor monom-dimension)
|
---|
[2125] | 60 | (exponents :initarg :exponents :accessor monom-exponents))
|
---|
[2268] | 61 | (:default-initargs :dimension nil :exponents nil :exponent nil))
|
---|
[880] | 62 |
|
---|
[2245] | 63 | (defmethod print-object ((self monom) stream)
|
---|
| 64 | (format stream "#<MONOM DIMENSION=~A EXPONENTS=~A>"
|
---|
| 65 | (slot-value self 'dimension)
|
---|
| 66 | (slot-value self 'exponents)))
|
---|
[2027] | 67 |
|
---|
[2280] | 68 | (defmethod initialize-instance :before ((self monom)
|
---|
[2281] | 69 | &rest
|
---|
| 70 | args
|
---|
| 71 | &key
|
---|
| 72 | &allow-other-keys)
|
---|
[2278] | 73 | (format t "INITIALIZE-INSTANCE called with:~&ARGS: ~W.~%" args))
|
---|
| 74 |
|
---|
[2282] | 75 | (defmethod initialize-instance ((self monom)
|
---|
| 76 | ;;&rest args
|
---|
| 77 | &key
|
---|
| 78 | dimension
|
---|
| 79 | exponents
|
---|
| 80 | exponent
|
---|
| 81 | &allow-other-keys
|
---|
| 82 | )
|
---|
[2269] | 83 | (let* ((new-dimension (cond (dimension dimension)
|
---|
| 84 | (exponents
|
---|
[2261] | 85 | (length exponents))
|
---|
| 86 | (t
|
---|
[2269] | 87 | (error "DIMENSION or EXPONENTS must not be NIL"))))
|
---|
[2261] | 88 | (new-exponents (cond
|
---|
| 89 | ;; when exponents are supplied
|
---|
[2269] | 90 | (exponents
|
---|
| 91 | (make-array (list new-dimension) :initial-contents exponents))
|
---|
[2261] | 92 | ;; when all exponents are to be identical
|
---|
[2269] | 93 | (exponent
|
---|
[2261] | 94 | (make-array (list new-dimension) :initial-element exponent
|
---|
| 95 | :element-type 'exponent))
|
---|
| 96 | ;; otherwise, all exponents are zero
|
---|
| 97 | (t
|
---|
[2262] | 98 | (make-array (list new-dimension) :element-type 'exponent :initial-element 0)))))
|
---|
[2267] | 99 | (setf (slot-value self 'dimension) new-dimension
|
---|
[2277] | 100 | (slot-value self 'exponents) new-exponents)
|
---|
| 101 | (call-next-method)))
|
---|
[717] | 102 |
|
---|
[2221] | 103 |
|
---|
[2225] | 104 |
|
---|
[48] | 105 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 106 | ;;
|
---|
| 107 | ;; Operations on monomials
|
---|
| 108 | ;;
|
---|
| 109 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 110 |
|
---|
[2143] | 111 | (defmethod r-dimension ((m monom))
|
---|
[2126] | 112 | (monom-dimension m))
|
---|
[745] | 113 |
|
---|
[2143] | 114 | (defmethod r-elt ((m monom) index)
|
---|
[48] | 115 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 116 | (with-slots (exponents)
|
---|
| 117 | m
|
---|
[2154] | 118 | (elt exponents index)))
|
---|
[48] | 119 |
|
---|
[2160] | 120 | (defmethod (setf r-elt) (new-value (m monom) index)
|
---|
[2023] | 121 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 122 | (with-slots (exponents)
|
---|
| 123 | m
|
---|
[2154] | 124 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 125 |
|
---|
[2149] | 126 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (r-dimension m)))
|
---|
[48] | 127 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 128 | of variables may be specified with arguments START and END."
|
---|
[2023] | 129 | (declare (type fixnum start end))
|
---|
| 130 | (with-slots (exponents)
|
---|
| 131 | m
|
---|
[2154] | 132 | (reduce #'+ exponents :start start :end end)))
|
---|
[48] | 133 |
|
---|
[2064] | 134 |
|
---|
[2149] | 135 | (defmethod r-sugar ((m monom) &aux (start 0) (end (r-dimension m)))
|
---|
[48] | 136 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 137 | of variables may be specified with arguments START and END."
|
---|
[2032] | 138 | (declare (type fixnum start end))
|
---|
[2155] | 139 | (r-total-degree m start end))
|
---|
[48] | 140 |
|
---|
[2144] | 141 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
[2072] | 142 | "Multiply monomial M1 by monomial M2."
|
---|
[2195] | 143 | (with-slots ((exponents1 exponents) dimension)
|
---|
[2038] | 144 | m1
|
---|
[2170] | 145 | (with-slots ((exponents2 exponents))
|
---|
[2038] | 146 | m2
|
---|
[2167] | 147 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2154] | 148 | (map-into exponents #'+ exponents1 exponents2)
|
---|
[2195] | 149 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[2038] | 150 |
|
---|
[2069] | 151 |
|
---|
| 152 |
|
---|
[2144] | 153 | (defmethod r/ ((m1 monom) (m2 monom))
|
---|
[1896] | 154 | "Divide monomial M1 by monomial M2."
|
---|
[2037] | 155 | (with-slots ((exponents1 exponents))
|
---|
[2034] | 156 | m1
|
---|
[2037] | 157 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 158 | m2
|
---|
| 159 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 160 | (dimension (reduce #'+ exponents)))
|
---|
[2154] | 161 | (map-into exponents #'- exponents1 exponents2)
|
---|
[2195] | 162 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 163 |
|
---|
[2144] | 164 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 165 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 166 | (with-slots ((exponents1 exponents))
|
---|
| 167 | m1
|
---|
| 168 | (with-slots ((exponents2 exponents))
|
---|
| 169 | m2
|
---|
| 170 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 171 |
|
---|
[2075] | 172 |
|
---|
[2144] | 173 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 174 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 175 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 176 | m1 m2 m3))
|
---|
[48] | 177 |
|
---|
[2049] | 178 |
|
---|
[2144] | 179 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 180 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 181 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 182 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 183 | m1 m2 m3 m4))
|
---|
| 184 |
|
---|
[2144] | 185 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 186 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 187 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 188 | m1
|
---|
[2171] | 189 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 190 | m2
|
---|
[2171] | 191 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 192 | m3
|
---|
[2171] | 193 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 194 | m4
|
---|
[2077] | 195 | (every
|
---|
| 196 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 197 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 198 |
|
---|
[2144] | 199 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 200 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 201 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 202 | m1
|
---|
[2171] | 203 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 204 | m2
|
---|
| 205 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 206 |
|
---|
[2146] | 207 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 208 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 209 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 210 | m1
|
---|
[2171] | 211 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 212 | m2
|
---|
[2154] | 213 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 214 |
|
---|
[2076] | 215 |
|
---|
[2163] | 216 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[48] | 217 | "Returns T if two monomials M1 and M2 are equal."
|
---|
[2171] | 218 | (with-slots ((exponents1 exponents))
|
---|
[2079] | 219 | m1
|
---|
[2171] | 220 | (with-slots ((exponents2 exponents))
|
---|
[2079] | 221 | m2
|
---|
| 222 | (every #'= exponents1 exponents2))))
|
---|
[48] | 223 |
|
---|
[2146] | 224 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 225 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2171] | 226 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 227 | m1
|
---|
[2171] | 228 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 229 | m2
|
---|
| 230 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 231 | (dimension (reduce #'+ exponents)))
|
---|
[2082] | 232 | (map-into exponents #'max exponents1 exponents2)
|
---|
[2200] | 233 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 234 |
|
---|
[2080] | 235 |
|
---|
[2146] | 236 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 237 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2171] | 238 | (with-slots ((exponents1 exponents))
|
---|
[2082] | 239 | m1
|
---|
[2171] | 240 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 241 | m2
|
---|
| 242 | (let* ((exponents (copy-seq exponents1))
|
---|
[2195] | 243 | (dimension (reduce #'+ exponents)))
|
---|
[2082] | 244 | (map-into exponents #'min exponents1 exponents2)
|
---|
[2197] | 245 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 246 |
|
---|
[2146] | 247 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 248 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 249 | (declare (type fixnum k))
|
---|
| 250 | (with-slots (exponents)
|
---|
| 251 | m
|
---|
[2154] | 252 | (plusp (elt exponents k))))
|
---|
[48] | 253 |
|
---|
[2146] | 254 | (defmethod r-tensor-product ((m1 monom) (m2 monom)
|
---|
[2195] | 255 | &aux (dimension (+ (r-dimension m1) (r-dimension m2))))
|
---|
| 256 | (declare (fixnum dimension))
|
---|
[2171] | 257 | (with-slots ((exponents1 exponents))
|
---|
[2087] | 258 | m1
|
---|
[2171] | 259 | (with-slots ((exponents2 exponents))
|
---|
[2087] | 260 | m2
|
---|
[2147] | 261 | (make-instance 'monom
|
---|
[2195] | 262 | :dimension dimension
|
---|
[2147] | 263 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 264 |
|
---|
[2148] | 265 | (defmethod r-contract ((m monom) k)
|
---|
[1638] | 266 | "Drop the first K variables in monomial M."
|
---|
[2085] | 267 | (declare (fixnum k))
|
---|
[2196] | 268 | (with-slots (dimension exponents)
|
---|
[2085] | 269 | m
|
---|
[2197] | 270 | (setf dimension (- dimension k)
|
---|
[2085] | 271 | exponents (subseq exponents k))))
|
---|
[886] | 272 |
|
---|
| 273 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 274 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 275 | "Construct a monomial in the polynomial ring
|
---|
| 276 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 277 | which represents a single variable. It assumes number of variables
|
---|
| 278 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 279 | may appear raised to power POWER. "
|
---|
[1924] | 280 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 281 | (with-slots (exponents)
|
---|
| 282 | m
|
---|
[2154] | 283 | (setf (elt exponents pos) power)
|
---|
[2089] | 284 | m))
|
---|
[1151] | 285 |
|
---|
[2150] | 286 | (defmethod r->list ((m monom))
|
---|
[1152] | 287 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2148] | 288 | (coerce (monom-exponents m) 'list))
|
---|