[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-VARIABLE"))
|
---|
[81] | 46 |
|
---|
[1610] | 47 | (in-package :monom)
|
---|
[48] | 48 |
|
---|
[1925] | 49 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[1923] | 50 |
|
---|
[48] | 51 | (deftype exponent ()
|
---|
| 52 | "Type of exponent in a monomial."
|
---|
| 53 | 'fixnum)
|
---|
| 54 |
|
---|
[2022] | 55 | (defclass monom ()
|
---|
[2361] | 56 | ((dimension :initarg :dimension :accessor r-dimension)
|
---|
| 57 | (exponents :initarg :exponents :accessor r-exponents))
|
---|
[2268] | 58 | (:default-initargs :dimension nil :exponents nil :exponent nil))
|
---|
[880] | 59 |
|
---|
[2245] | 60 | (defmethod print-object ((self monom) stream)
|
---|
| 61 | (format stream "#<MONOM DIMENSION=~A EXPONENTS=~A>"
|
---|
[2362] | 62 | (r-dimension self)
|
---|
[2366] | 63 | (r-exponents self)))
|
---|
[2027] | 64 |
|
---|
[2309] | 65 | ;; Debug calls to initialize-instance
|
---|
[2374] | 66 | (defmethod shared-initialize ((self monom) slot-names
|
---|
[2373] | 67 | &rest
|
---|
[2374] | 68 | initargs
|
---|
[2373] | 69 | &key
|
---|
| 70 | &allow-other-keys)
|
---|
[2374] | 71 | (format t "MONOM::SHARED-INITIALIZE called with:~&SLOT-NAMES: ~W~&INITARGS: ~W.~%" slot-names initargs)
|
---|
[2373] | 72 | (call-next-method))
|
---|
[2278] | 73 |
|
---|
[2344] | 74 | (defmethod shared-initialize :after ((self monom) slot-names
|
---|
[2350] | 75 | &key
|
---|
| 76 | dimension
|
---|
| 77 | exponents
|
---|
| 78 | exponent
|
---|
| 79 | &allow-other-keys
|
---|
| 80 | )
|
---|
[2354] | 81 | (if (eq slot-names t) (setf slot-names '(dimension exponents)))
|
---|
| 82 | (dolist (slot-name slot-names)
|
---|
[2357] | 83 | (case slot-name
|
---|
[2354] | 84 | (dimension
|
---|
[2355] | 85 | (cond (dimension
|
---|
| 86 | (setf (slot-value self 'dimension) dimension))
|
---|
[2354] | 87 | (exponents
|
---|
| 88 | (setf (slot-value self 'dimension) (length exponents)))
|
---|
| 89 | (t
|
---|
| 90 | (error "DIMENSION or EXPONENTS must not be NIL"))))
|
---|
| 91 | (exponents
|
---|
| 92 | (cond
|
---|
| 93 | ;; when exponents are supplied
|
---|
| 94 | (exponents
|
---|
[2356] | 95 | (let ((dim (length exponents)))
|
---|
| 96 | (setf (slot-value self 'dimension) dim
|
---|
| 97 | (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
|
---|
[2354] | 98 | ;; when all exponents are to be identical
|
---|
[2356] | 99 | (t
|
---|
| 100 | (let ((dim (slot-value self 'dimension)))
|
---|
| 101 | (setf (slot-value self 'exponents)
|
---|
| 102 | (make-array (list dim) :initial-element (or exponent 0)
|
---|
| 103 | :element-type 'exponent)))))))))
|
---|
[717] | 104 |
|
---|
[48] | 105 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 106 | ;;
|
---|
| 107 | ;; Operations on monomials
|
---|
| 108 | ;;
|
---|
| 109 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 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 |
|
---|
[2149] | 123 | (defmethod r-total-degree ((m monom) &optional (start 0) (end (r-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 |
|
---|
[2149] | 132 | (defmethod r-sugar ((m monom) &aux (start 0) (end (r-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 |
|
---|
[2144] | 138 | (defmethod r* ((m1 monom) (m2 monom))
|
---|
[2072] | 139 | "Multiply monomial M1 by monomial M2."
|
---|
[2351] | 140 | (format t "MONOM::R* called with:~& M1: ~A~& M2: ~A~%" m1 m2)
|
---|
[2195] | 141 | (with-slots ((exponents1 exponents) dimension)
|
---|
[2038] | 142 | m1
|
---|
[2170] | 143 | (with-slots ((exponents2 exponents))
|
---|
[2038] | 144 | m2
|
---|
[2167] | 145 | (let* ((exponents (copy-seq exponents1)))
|
---|
[2154] | 146 | (map-into exponents #'+ exponents1 exponents2)
|
---|
[2195] | 147 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[2038] | 148 |
|
---|
[2069] | 149 |
|
---|
| 150 |
|
---|
[2144] | 151 | (defmethod r/ ((m1 monom) (m2 monom))
|
---|
[1896] | 152 | "Divide monomial M1 by monomial M2."
|
---|
[2313] | 153 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2034] | 154 | m1
|
---|
[2037] | 155 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 156 | m2
|
---|
| 157 | (let* ((exponents (copy-seq exponents1))
|
---|
[2314] | 158 | (dimension dimension1))
|
---|
[2154] | 159 | (map-into exponents #'- exponents1 exponents2)
|
---|
[2195] | 160 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 161 |
|
---|
[2144] | 162 | (defmethod r-divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 163 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 164 | (with-slots ((exponents1 exponents))
|
---|
| 165 | m1
|
---|
| 166 | (with-slots ((exponents2 exponents))
|
---|
| 167 | m2
|
---|
| 168 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 169 |
|
---|
[2075] | 170 |
|
---|
[2144] | 171 | (defmethod r-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
[2055] | 172 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 173 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 174 | m1 m2 m3))
|
---|
[48] | 175 |
|
---|
[2049] | 176 |
|
---|
[2144] | 177 | (defmethod r-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 178 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 179 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 180 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 181 | m1 m2 m3 m4))
|
---|
| 182 |
|
---|
[2144] | 183 | (defmethod r-lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 184 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2171] | 185 | (with-slots ((exponents1 exponents))
|
---|
[2076] | 186 | m1
|
---|
[2171] | 187 | (with-slots ((exponents2 exponents))
|
---|
[2076] | 188 | m2
|
---|
[2171] | 189 | (with-slots ((exponents3 exponents))
|
---|
[2076] | 190 | m3
|
---|
[2171] | 191 | (with-slots ((exponents4 exponents))
|
---|
[2076] | 192 | m4
|
---|
[2077] | 193 | (every
|
---|
| 194 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 195 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 196 |
|
---|
[2144] | 197 | (defmethod r-divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 198 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2171] | 199 | (with-slots ((exponents1 exponents))
|
---|
[2144] | 200 | m1
|
---|
[2171] | 201 | (with-slots ((exponents2 exponents))
|
---|
[2144] | 202 | m2
|
---|
| 203 | (every #'>= exponents1 exponents2))))
|
---|
[2078] | 204 |
|
---|
[2146] | 205 | (defmethod r-rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 206 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2171] | 207 | (with-slots ((exponents1 exponents))
|
---|
[2078] | 208 | m1
|
---|
[2171] | 209 | (with-slots ((exponents2 exponents))
|
---|
[2078] | 210 | m2
|
---|
[2154] | 211 | (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 212 |
|
---|
[2076] | 213 |
|
---|
[2163] | 214 | (defmethod r-equalp ((m1 monom) (m2 monom))
|
---|
[48] | 215 | "Returns T if two monomials M1 and M2 are equal."
|
---|
[2171] | 216 | (with-slots ((exponents1 exponents))
|
---|
[2079] | 217 | m1
|
---|
[2171] | 218 | (with-slots ((exponents2 exponents))
|
---|
[2079] | 219 | m2
|
---|
| 220 | (every #'= exponents1 exponents2))))
|
---|
[48] | 221 |
|
---|
[2146] | 222 | (defmethod r-lcm ((m1 monom) (m2 monom))
|
---|
[48] | 223 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2319] | 224 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 225 | m1
|
---|
[2171] | 226 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 227 | m2
|
---|
| 228 | (let* ((exponents (copy-seq exponents1))
|
---|
[2319] | 229 | (dimension dimension1))
|
---|
[2082] | 230 | (map-into exponents #'max exponents1 exponents2)
|
---|
[2200] | 231 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 232 |
|
---|
[2080] | 233 |
|
---|
[2146] | 234 | (defmethod r-gcd ((m1 monom) (m2 monom))
|
---|
[48] | 235 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2320] | 236 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2082] | 237 | m1
|
---|
[2171] | 238 | (with-slots ((exponents2 exponents))
|
---|
[2082] | 239 | m2
|
---|
| 240 | (let* ((exponents (copy-seq exponents1))
|
---|
[2320] | 241 | (dimension dimension1))
|
---|
[2082] | 242 | (map-into exponents #'min exponents1 exponents2)
|
---|
[2197] | 243 | (make-instance 'monom :dimension dimension :exponents exponents)))))
|
---|
[48] | 244 |
|
---|
[2146] | 245 | (defmethod r-depends-p ((m monom) k)
|
---|
[48] | 246 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 247 | (declare (type fixnum k))
|
---|
| 248 | (with-slots (exponents)
|
---|
| 249 | m
|
---|
[2154] | 250 | (plusp (elt exponents k))))
|
---|
[48] | 251 |
|
---|
[2321] | 252 | (defmethod r-tensor-product ((m1 monom) (m2 monom))
|
---|
| 253 | (with-slots ((exponents1 exponents) (dimension1 dimension))
|
---|
[2087] | 254 | m1
|
---|
[2321] | 255 | (with-slots ((exponents2 exponents) (dimension2 dimension))
|
---|
[2087] | 256 | m2
|
---|
[2147] | 257 | (make-instance 'monom
|
---|
[2321] | 258 | :dimension (+ dimension1 dimension2)
|
---|
[2147] | 259 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 260 |
|
---|
[2148] | 261 | (defmethod r-contract ((m monom) k)
|
---|
[1638] | 262 | "Drop the first K variables in monomial M."
|
---|
[2085] | 263 | (declare (fixnum k))
|
---|
[2196] | 264 | (with-slots (dimension exponents)
|
---|
[2085] | 265 | m
|
---|
[2197] | 266 | (setf dimension (- dimension k)
|
---|
[2085] | 267 | exponents (subseq exponents k))))
|
---|
[886] | 268 |
|
---|
| 269 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
[2218] | 270 | &aux (m (make-instance 'monom :dimension nvars)))
|
---|
[886] | 271 | "Construct a monomial in the polynomial ring
|
---|
| 272 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 273 | which represents a single variable. It assumes number of variables
|
---|
| 274 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 275 | may appear raised to power POWER. "
|
---|
[1924] | 276 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 277 | (with-slots (exponents)
|
---|
| 278 | m
|
---|
[2154] | 279 | (setf (elt exponents pos) power)
|
---|
[2089] | 280 | m))
|
---|
[1151] | 281 |
|
---|
[2150] | 282 | (defmethod r->list ((m monom))
|
---|
[1152] | 283 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2364] | 284 | (coerce (r-exponents m) 'list))
|
---|