[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)
|
---|
[2122] | 43 | (:shadowing-import-from :ring "ZEROP" "LCM" "GCD" "+" "-" "*" "/" "EXPT")
|
---|
[422] | 44 | (:export "MONOM"
|
---|
[423] | 45 | "EXPONENT"
|
---|
[2124] | 46 | "MAKE-MONOM"
|
---|
[2125] | 47 | "MONOM-DIMENSION"
|
---|
[2124] | 48 | "MONOM-EXPONENTS"
|
---|
| 49 | "MAKE-MONOM-VARIABLE"))
|
---|
[81] | 50 |
|
---|
[1610] | 51 | (in-package :monom)
|
---|
[48] | 52 |
|
---|
[1925] | 53 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
[1923] | 54 |
|
---|
[48] | 55 | (deftype exponent ()
|
---|
| 56 | "Type of exponent in a monomial."
|
---|
| 57 | 'fixnum)
|
---|
| 58 |
|
---|
[2022] | 59 | (defclass monom ()
|
---|
[2125] | 60 | ((dim :initarg :dim :accessor monom-dimension)
|
---|
| 61 | (exponents :initarg :exponents :accessor monom-exponents))
|
---|
[2022] | 62 | (:default-initargs :dim 0 :exponents nil))
|
---|
[880] | 63 |
|
---|
[2028] | 64 | (defmethod print-object ((m monom) stream)
|
---|
[2036] | 65 | (princ (slot-value m 'exponents) stream))
|
---|
[2027] | 66 |
|
---|
[884] | 67 | ;; If a monomial is redefined as structure with slot EXPONENTS, the function
|
---|
| 68 | ;; below can be the BOA constructor.
|
---|
[873] | 69 | (defun make-monom (&key
|
---|
| 70 | (dimension nil dimension-suppied-p)
|
---|
| 71 | (initial-exponents nil initial-exponents-supplied-p)
|
---|
| 72 | (initial-exponent nil initial-exponent-supplied-p)
|
---|
| 73 | &aux
|
---|
| 74 | (dim (cond (dimension-suppied-p dimension)
|
---|
| 75 | (initial-exponents-supplied-p (length initial-exponents))
|
---|
[2028] | 76 | (t (error "You must provide DIMENSION or INITIAL-EXPONENTS"))))
|
---|
[2022] | 77 | (exponents (cond
|
---|
| 78 | ;; when exponents are supplied
|
---|
| 79 | (initial-exponents-supplied-p
|
---|
| 80 | (make-array (list dim) :initial-contents initial-exponents
|
---|
| 81 | :element-type 'exponent))
|
---|
| 82 | ;; when all exponents are to be identical
|
---|
| 83 | (initial-exponent-supplied-p
|
---|
| 84 | (make-array (list dim) :initial-element initial-exponent
|
---|
| 85 | :element-type 'exponent))
|
---|
| 86 | ;; otherwise, all exponents are zero
|
---|
| 87 | (t
|
---|
| 88 | (make-array (list dim) :element-type 'exponent :initial-element 0)))))
|
---|
[1600] | 89 | "A constructor (factory) of monomials. If DIMENSION is given, a sequence of
|
---|
[1599] | 90 | DIMENSION elements of type EXPONENT is constructed, where individual
|
---|
| 91 | elements are the value of INITIAL-EXPONENT, which defaults to 0.
|
---|
| 92 | Alternatively, all elements may be specified as a list
|
---|
| 93 | INITIAL-EXPONENTS."
|
---|
[2022] | 94 | (make-instance 'monom :dim dim :exponents exponents))
|
---|
[717] | 95 |
|
---|
[48] | 96 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 97 | ;;
|
---|
| 98 | ;; Operations on monomials
|
---|
| 99 | ;;
|
---|
| 100 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 101 |
|
---|
[2023] | 102 | (defmethod dimension ((m monom))
|
---|
[2126] | 103 | (monom-dimension m))
|
---|
[745] | 104 |
|
---|
[2023] | 105 | (defmethod ring-elt ((m monom) index)
|
---|
[48] | 106 | "Return the power in the monomial M of variable number INDEX."
|
---|
[2023] | 107 | (with-slots (exponents)
|
---|
| 108 | m
|
---|
| 109 | (elt exponents index)))
|
---|
[48] | 110 |
|
---|
[2023] | 111 | (defmethod (setf ring-elt) (new-value (m monom) index)
|
---|
| 112 | "Return the power in the monomial M of variable number INDEX."
|
---|
| 113 | (with-slots (exponents)
|
---|
| 114 | m
|
---|
[2030] | 115 | (setf (elt exponents index) new-value)))
|
---|
[2023] | 116 |
|
---|
[2055] | 117 | (defmethod total-degree ((m monom) &optional (start 0) (end (dimension m)))
|
---|
[48] | 118 | "Return the todal degree of a monomoal M. Optinally, a range
|
---|
| 119 | of variables may be specified with arguments START and END."
|
---|
[2023] | 120 | (declare (type fixnum start end))
|
---|
| 121 | (with-slots (exponents)
|
---|
| 122 | m
|
---|
[2112] | 123 | (reduce #'cl:+ exponents :start start :end end)))
|
---|
[48] | 124 |
|
---|
[2064] | 125 |
|
---|
[2031] | 126 | (defmethod sugar ((m monom) &aux (start 0) (end (dimension m)))
|
---|
[48] | 127 | "Return the sugar of a monomial M. Optinally, a range
|
---|
| 128 | of variables may be specified with arguments START and END."
|
---|
[2032] | 129 | (declare (type fixnum start end))
|
---|
[2064] | 130 | (with-slots (exponents)
|
---|
| 131 | m
|
---|
| 132 | (total-degree exponents start end)))
|
---|
[48] | 133 |
|
---|
[2109] | 134 | (defmethod + ((m1 monom) (m2 monom))
|
---|
[2072] | 135 | "Multiply monomial M1 by monomial M2."
|
---|
[2038] | 136 | (with-slots ((exponents1 exponents))
|
---|
| 137 | m1
|
---|
| 138 | (with-slots ((exponents2 exponents))
|
---|
| 139 | m2
|
---|
| 140 | (let* ((exponents (copy-seq exponents1))
|
---|
[2112] | 141 | (dim (reduce #'cl:+ exponents)))
|
---|
| 142 | (map-into exponents #'cl:+ exponents1 exponents2)
|
---|
[2038] | 143 | (make-instance 'monom :dim dim :exponents exponents)))))
|
---|
| 144 |
|
---|
[2069] | 145 |
|
---|
| 146 |
|
---|
[2109] | 147 | (defmethod / ((m1 monom) (m2 monom))
|
---|
[1896] | 148 | "Divide monomial M1 by monomial M2."
|
---|
[2037] | 149 | (with-slots ((exponents1 exponents))
|
---|
[2034] | 150 | m1
|
---|
[2037] | 151 | (with-slots ((exponents2 exponents))
|
---|
[2034] | 152 | m2
|
---|
| 153 | (let* ((exponents (copy-seq exponents1))
|
---|
[2112] | 154 | (dim (reduce #'cl:+ exponents)))
|
---|
| 155 | (map-into exponents #'cl:- exponents1 exponents2)
|
---|
[2034] | 156 | (make-instance 'monom :dim dim :exponents exponents)))))
|
---|
[48] | 157 |
|
---|
[2055] | 158 | (defmethod divides-p ((m1 monom) (m2 monom))
|
---|
[48] | 159 | "Returns T if monomial M1 divides monomial M2, NIL otherwise."
|
---|
[2039] | 160 | (with-slots ((exponents1 exponents))
|
---|
| 161 | m1
|
---|
| 162 | (with-slots ((exponents2 exponents))
|
---|
| 163 | m2
|
---|
| 164 | (every #'<= exponents1 exponents2))))
|
---|
[48] | 165 |
|
---|
[2075] | 166 |
|
---|
[2055] | 167 | (defmethod divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
|
---|
| 168 | "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
|
---|
[875] | 169 | (every #'(lambda (x y z) (<= x (max y z)))
|
---|
[869] | 170 | m1 m2 m3))
|
---|
[48] | 171 |
|
---|
[2049] | 172 |
|
---|
[2069] | 173 | (defmethod lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
|
---|
[48] | 174 | "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
|
---|
[1890] | 175 | (declare (type monom m1 m2 m3 m4))
|
---|
[869] | 176 | (every #'(lambda (x y z w) (<= (max x y) (max z w)))
|
---|
| 177 | m1 m2 m3 m4))
|
---|
| 178 |
|
---|
[2076] | 179 | (defmethod lcm-equal-lcm-p (m1 m2 m3 m4)
|
---|
[2075] | 180 | "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
|
---|
[2076] | 181 | (with-slots (exponents1 exponents)
|
---|
| 182 | m1
|
---|
| 183 | (with-slots (exponents2 exponents)
|
---|
| 184 | m2
|
---|
| 185 | (with-slots (exponents3 exponents)
|
---|
| 186 | m3
|
---|
| 187 | (with-slots (exponents4 exponents)
|
---|
| 188 | m4
|
---|
[2077] | 189 | (every
|
---|
| 190 | #'(lambda (x y z w) (= (max x y) (max z w)))
|
---|
| 191 | exponents1 exponents2 exponents3 exponents4))))))
|
---|
[48] | 192 |
|
---|
[2076] | 193 | (defmethod divisible-by-p ((m1 monom) (m2 monom))
|
---|
[48] | 194 | "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
|
---|
[2078] | 195 |
|
---|
[869] | 196 | (every #'>= m1 m2))
|
---|
[48] | 197 |
|
---|
[2076] | 198 | (defmethod rel-prime-p ((m1 monom) (m2 monom))
|
---|
[48] | 199 | "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
|
---|
[2078] | 200 | (with-slots (exponents1 exponents)
|
---|
| 201 | m1
|
---|
| 202 | (with-slots (exponents2 exponents)
|
---|
| 203 | m2
|
---|
[2110] | 204 | (every #'(lambda (x y) (cl:zerop (min x y))) exponents1 exponents2))))
|
---|
[48] | 205 |
|
---|
[2076] | 206 |
|
---|
[2079] | 207 | (defmethod equal-p ((m1 monom) (m2 monom))
|
---|
[48] | 208 | "Returns T if two monomials M1 and M2 are equal."
|
---|
[2079] | 209 | (with-slots (exponents1 exponents)
|
---|
| 210 | m1
|
---|
| 211 | (with-slots (exponents2 exponents)
|
---|
| 212 | m2
|
---|
| 213 | (every #'= exponents1 exponents2))))
|
---|
[48] | 214 |
|
---|
[2111] | 215 | (defmethod lcm ((m1 monom) (m2 monom))
|
---|
[48] | 216 | "Returns least common multiple of monomials M1 and M2."
|
---|
[2082] | 217 | (with-slots (exponents1 exponents)
|
---|
| 218 | m1
|
---|
| 219 | (with-slots (exponents2 exponents)
|
---|
| 220 | m2
|
---|
| 221 | (let* ((exponents (copy-seq exponents1))
|
---|
[2112] | 222 | (dim (reduce #'cl:+ exponents)))
|
---|
[2082] | 223 | (map-into exponents #'max exponents1 exponents2)
|
---|
| 224 | (make-instance 'monom :dim dim :exponents exponents)))))
|
---|
[48] | 225 |
|
---|
[2080] | 226 |
|
---|
[2113] | 227 | (defmethod gcd ((m1 monom) (m2 monom))
|
---|
[48] | 228 | "Returns greatest common divisor of monomials M1 and M2."
|
---|
[2082] | 229 | (with-slots (exponents1 exponents)
|
---|
| 230 | m1
|
---|
| 231 | (with-slots (exponents2 exponents)
|
---|
| 232 | m2
|
---|
| 233 | (let* ((exponents (copy-seq exponents1))
|
---|
[2112] | 234 | (dim (reduce #'cl:+ exponents)))
|
---|
[2082] | 235 | (map-into exponents #'min exponents1 exponents2)
|
---|
| 236 | (make-instance 'monom :dim dim :exponents exponents)))))
|
---|
[48] | 237 |
|
---|
[2084] | 238 | (defmethod depends-p ((m monom) k)
|
---|
[48] | 239 | "Return T if the monomial M depends on variable number K."
|
---|
[2083] | 240 | (declare (type fixnum k))
|
---|
| 241 | (with-slots (exponents)
|
---|
| 242 | m
|
---|
| 243 | (plusp (elt exponents k))))
|
---|
[48] | 244 |
|
---|
[2092] | 245 | (defmethod ring-tensor-mul ((m1 monom) (m2 monom)
|
---|
[2114] | 246 | &aux (dim (cl:+ (dimension m1) (dimension m2))))
|
---|
[2085] | 247 | (declare (fixnum dim))
|
---|
[2087] | 248 | (with-slots (exponents1 exponents)
|
---|
| 249 | m1
|
---|
| 250 | (with-slots (exponents2 exponents)
|
---|
| 251 | m2
|
---|
[2088] | 252 | (make-instance 'monom
|
---|
| 253 | :dim dim
|
---|
[2087] | 254 | :exponents (concatenate 'vector exponents1 exponents2)))))
|
---|
[48] | 255 |
|
---|
[2085] | 256 | (defmethod contract ((m monom) k)
|
---|
[1638] | 257 | "Drop the first K variables in monomial M."
|
---|
[2085] | 258 | (declare (fixnum k))
|
---|
| 259 | (with-slots (dim exponents)
|
---|
| 260 | m
|
---|
| 261 | (setf dim (- dim k)
|
---|
| 262 | exponents (subseq exponents k))))
|
---|
[886] | 263 |
|
---|
| 264 | (defun make-monom-variable (nvars pos &optional (power 1)
|
---|
| 265 | &aux (m (make-monom :dimension nvars)))
|
---|
| 266 | "Construct a monomial in the polynomial ring
|
---|
| 267 | RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
|
---|
| 268 | which represents a single variable. It assumes number of variables
|
---|
| 269 | NVARS and the variable is at position POS. Optionally, the variable
|
---|
| 270 | may appear raised to power POWER. "
|
---|
[1924] | 271 | (declare (type fixnum nvars pos power) (type monom m))
|
---|
[2089] | 272 | (with-slots (exponents)
|
---|
| 273 | m
|
---|
| 274 | (setf (elt exponents pos) power)
|
---|
| 275 | m))
|
---|
[1151] | 276 |
|
---|
[2086] | 277 | (defmethod monom->list ((m monom))
|
---|
[1152] | 278 | "A human-readable representation of a monomial M as a list of exponents."
|
---|
[2086] | 279 | (with-slots (exponents)
|
---|
| 280 | m
|
---|
| 281 | (coerce exponents 'list)))
|
---|