close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/monom.lisp@ 3442

Last change on this file since 3442 was 3442, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 11.1 KB
RevLine 
[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"
[3442]23 (:use :cl)
[422]24 (:export "MONOM"
[423]25 "EXPONENT"
[2781]26 "MONOM-DIMENSION"
27 "MONOM-EXPONENTS"
[3442]28 "MONOM-EQUALP"
29 "MONOM-ELT"
30 "MONOM-TOTAL-DEGREE"
31 "MONOM-SUGRAR"
32 "MONOM-MULTIPLY-BY"
33 "MONOM-DIVIDE-BY"
34 "MONOM-COPY-INSTANCE"
35 "MONOM-MULTIPLY-2"
36 "MONOM-MULTIPLY"
37 "MONOM-DIVIDES-P"
38 "MONOM-DIVIDES-LCM-P"
39 "MONOM-LCM-DIVIDES-LCM-P"
40 "MONOM-LCM-EQUAL-LCM-P"
41 "MONOM-DIVISIBLE-BY-P"
42 "MONOM-REL-PRIME-P"
43 "MONOM-LCM"
44 "MONOM-GCD"
45 "MONOM-DEPENDS-P"
46 "MONOM-LEFT-TENSOR-PRODUCT-BY"
47 "MONOM-RIGHT-TENSOR-PRODUCT-BY"
48 "MONOM-LEFT-CONTRACT"
49 "MAKE-MONOM-VARIABLE"
50 "MONOM->LIST")
51
[2524]52 (:documentation
53 "This package implements basic operations on monomials.
54DATA STRUCTURES: Conceptually, monomials can be represented as lists:
[81]55
[2524]56 monom: (n1 n2 ... nk) where ni are non-negative integers
57
58However, lists may be implemented as other sequence types, so the
59flexibility to change the representation should be maintained in the
60code to use general operations on sequences whenever possible. The
61optimization for the actual representation should be left to
62declarations and the compiler.
63
64EXAMPLES: Suppose that variables are x and y. Then
65
66 Monom x*y^2 ---> (1 2) "))
67
[1610]68(in-package :monom)
[48]69
[1925]70(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
[1923]71
[48]72(deftype exponent ()
73 "Type of exponent in a monomial."
74 'fixnum)
75
[2022]76(defclass monom ()
[3312]77 ((exponents :initarg :exponents :accessor monom-exponents
[3054]78 :documentation "The powers of the variables."))
[3289]79 ;; default-initargs are not needed, they are handled by SHARED-INITIALIZE
80 ;;(:default-initargs :dimension 'foo :exponents 'bar :exponent 'baz)
[2779]81 (:documentation
82 "Implements a monomial, i.e. a product of powers
83of variables, like X*Y^2."))
[880]84
[2245]85(defmethod print-object ((self monom) stream)
[3196]86 (print-unreadable-object (self stream :type t :identity t)
[3313]87 (with-accessors ((exponents monom-exponents))
[3216]88 self
[3313]89 (format stream "EXPONENTS=~A"
90 exponents))))
[2027]91
[3299]92(defmethod initialize-instance :after ((self monom)
[3297]93 &key
94 (dimension 0 dimension-supplied-p)
95 (exponents nil exponents-supplied-p)
[3318]96 (exponent 0)
[3297]97 &allow-other-keys
[2390]98 )
[3329]99 "The following INITIALIZE-INSTANCE method allows instance initialization
100of a MONOM in a style similar to MAKE-ARRAY, e.g.:
[3328]101
102 (MAKE-INSTANCE :EXPONENTS '(1 2 3)) --> #<MONOM EXPONENTS=#(1 2 3)>
103 (MAKE-INSTANCE :DIMENSION 3) --> #<MONOM EXPONENTS=#(0 0 0)>
104 (MAKE-INSTANCE :DIMENSION 3 :EXPONENT 7) --> #<MONOM EXPONENTS=#(7 7 7)>
[3329]105
106If both DIMENSION and EXPONENTS are supplied, they must be compatible,
107i.e. the length of EXPONENTS must be equal DIMENSION. If EXPONENTS
108is not supplied, a monom with repeated value EXPONENT is created.
109By default EXPONENT is 0, which results in a constant monomial.
[3328]110"
[3315]111 (cond
112 (exponents-supplied-p
[3327]113 (when (and dimension-supplied-p
114 (/= dimension (length exponents)))
115 (error "EXPONENTS (~A) must have supplied length DIMENSION (~A)"
116 exponents dimension))
[3315]117 (let ((dim (length exponents)))
118 (setf (slot-value self 'exponents) (make-array dim :initial-contents exponents))))
[3321]119 (dimension-supplied-p
[3315]120 ;; when all exponents are to be identical
[3321]121 (setf (slot-value self 'exponents) (make-array (list dimension)
122 :initial-element exponent
123 :element-type 'exponent)))
124 (t
125 (error "Initarg DIMENSION or EXPONENTS must be supplied."))))
[3293]126
[3441]127(defmethod monom-dimension (m)
128 (length (monom-exponents ,m)))
[3317]129
[3441]130(defmethod monom-equalp (m1 m2)
[2778]131 "Returns T iff monomials M1 and M2 have identical
132EXPONENTS."
[3441]133 `(equalp (monom-exponents ,m1) (monom-exponents ,m2)))
[2547]134
[3441]135(defmethod monom-elt (m index)
[48]136 "Return the power in the monomial M of variable number INDEX."
[2023]137 (with-slots (exponents)
138 m
[2154]139 (elt exponents index)))
[48]140
[3441]141(defmethod (setf monom-elt) (new-value m index)
[2023]142 "Return the power in the monomial M of variable number INDEX."
143 (with-slots (exponents)
144 m
[2154]145 (setf (elt exponents index) new-value)))
[2023]146
[3441]147(defmethod monom-total-degree (m &optional (start 0) (end (monom-dimension m)))
[48]148 "Return the todal degree of a monomoal M. Optinally, a range
149of variables may be specified with arguments START and END."
[2023]150 (declare (type fixnum start end))
151 (with-slots (exponents)
152 m
[2154]153 (reduce #'+ exponents :start start :end end)))
[48]154
[2064]155
[3441]156(defmethod monom-sugar (m &aux (start 0) (end (monom-dimension m)))
[48]157 "Return the sugar of a monomial M. Optinally, a range
158of variables may be specified with arguments START and END."
[2032]159 (declare (type fixnum start end))
[3441]160 (monom-total-degree m start end))
[48]161
[3442]162(defmethod monom-multiply-by ((self monom) (other monom))
[3322]163 (with-slots ((exponents1 exponents))
[2478]164 self
[3322]165 (with-slots ((exponents2 exponents))
[2478]166 other
[3322]167 (unless (= (length exponents1) (length exponents2))
168 (error "Incompatible dimensions"))
[2811]169 (map-into exponents1 #'+ exponents1 exponents2)))
[2480]170 self)
[2069]171
[2818]172(defmethod divide-by ((self monom) (other monom))
[3322]173 (with-slots ((exponents1 exponents))
[2818]174 self
[3322]175 (with-slots ((exponents2 exponents))
[2818]176 other
[3322]177 (unless (= (length exponents1) (length exponents2))
[3409]178 (error "divide-by: Incompatible dimensions."))
179 (unless (every #'>= exponents1 exponents2)
[3410]180 (error "divide-by: Negative power would result."))
[2818]181 (map-into exponents1 #'- exponents1 exponents2)))
182 self)
183
[3442]184(defmethod monom-copy-instance ((object monom) &rest initargs &key &allow-other-keys)
[3018]185 "An :AROUNT method for COPY-INSTANCE. The primary method is a shallow copy,
186 while for monomials we typically need a fresh copy of the
187 exponents."
[3004]188 (declare (ignore object initargs))
[3002]189 (let ((copy (call-next-method)))
[3003]190 (setf (monom-exponents copy) (copy-seq (monom-exponents copy)))
[3002]191 copy))
[2950]192
[3442]193(defmethod monom-multiply-2 ((m1 monom) (m2 monom))
[2816]194 "Non-destructively multiply monomial M1 by M2."
[3032]195 (multiply-by (copy-instance m1) (copy-instance m2)))
[2816]196
[3442]197(defmethod monom-multiply ((numerator monom) &rest denominators)
[3416]198 "Non-destructively divide monomial NUMERATOR by product of DENOMINATORS."
[3442]199 (divide-by (copy-instance numerator) (reduce #'monom-multiply-2 denominators)))
[48]200
[3441]201(defmethod monom-divides-p ((m1 monom) (m2 monom))
[48]202 "Returns T if monomial M1 divides monomial M2, NIL otherwise."
[2039]203 (with-slots ((exponents1 exponents))
204 m1
205 (with-slots ((exponents2 exponents))
206 m2
207 (every #'<= exponents1 exponents2))))
[48]208
[2075]209
[3441]210(defmethod monom-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom))
[2055]211 "Returns T if monomial M1 divides LCM(M2,M3), NIL otherwise."
[875]212 (every #'(lambda (x y z) (<= x (max y z)))
[869]213 m1 m2 m3))
[48]214
[2049]215
[3441]216(defmethod monom-lcm-divides-lcm-p ((m1 monom) (m2 monom) (m3 monom) (m4 monom))
[48]217 "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
[1890]218 (declare (type monom m1 m2 m3 m4))
[869]219 (every #'(lambda (x y z w) (<= (max x y) (max z w)))
220 m1 m2 m3 m4))
221
[3441]222(defmethod monom-lcm-equal-lcm-p (m1 m2 m3 m4)
[2075]223 "Returns T if monomial LCM(M1,M2) equals LCM(M3,M4), NIL otherwise."
[2171]224 (with-slots ((exponents1 exponents))
[2076]225 m1
[2171]226 (with-slots ((exponents2 exponents))
[2076]227 m2
[2171]228 (with-slots ((exponents3 exponents))
[2076]229 m3
[2171]230 (with-slots ((exponents4 exponents))
[2076]231 m4
[2077]232 (every
233 #'(lambda (x y z w) (= (max x y) (max z w)))
234 exponents1 exponents2 exponents3 exponents4))))))
[48]235
[3441]236(defmethod monom-divisible-by-p ((m1 monom) (m2 monom))
[48]237 "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
[2171]238 (with-slots ((exponents1 exponents))
[2144]239 m1
[2171]240 (with-slots ((exponents2 exponents))
[2144]241 m2
242 (every #'>= exponents1 exponents2))))
[2078]243
[3441]244(defmethod monom-rel-prime-p ((m1 monom) (m2 monom))
[48]245 "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
[2171]246 (with-slots ((exponents1 exponents))
[2078]247 m1
[2171]248 (with-slots ((exponents2 exponents))
[2078]249 m2
[2154]250 (every #'(lambda (x y) (zerop (min x y))) exponents1 exponents2))))
[48]251
[2076]252
[3441]253(defmethod monom-lcm ((m1 monom) (m2 monom))
[48]254 "Returns least common multiple of monomials M1 and M2."
[3322]255 (with-slots ((exponents1 exponents))
[2082]256 m1
[2171]257 (with-slots ((exponents2 exponents))
[2082]258 m2
[3324]259 (let* ((exponents (copy-seq exponents1)))
[2082]260 (map-into exponents #'max exponents1 exponents2)
[3322]261 (make-instance 'monom :exponents exponents)))))
[48]262
[2080]263
[3441]264(defmethod monom-gcd ((m1 monom) (m2 monom))
[48]265 "Returns greatest common divisor of monomials M1 and M2."
[3322]266 (with-slots ((exponents1 exponents))
[2082]267 m1
[2171]268 (with-slots ((exponents2 exponents))
[2082]269 m2
[3322]270 (let* ((exponents (copy-seq exponents1)))
[2082]271 (map-into exponents #'min exponents1 exponents2)
[3322]272 (make-instance 'monom :exponents exponents)))))
[48]273
[3441]274(defmethod monom-depends-p ((m monom) k)
[48]275 "Return T if the monomial M depends on variable number K."
[2083]276 (declare (type fixnum k))
277 (with-slots (exponents)
278 m
[2154]279 (plusp (elt exponents k))))
[48]280
[3441]281(defmethod monom-left-tensor-product-by ((self monom) (other monom))
[3323]282 (with-slots ((exponents1 exponents))
[3020]283 self
[3323]284 (with-slots ((exponents2 exponents))
[3020]285 other
[3323]286 (setf exponents1 (concatenate 'vector exponents2 exponents1))))
[3036]287 self)
[48]288
[3441]289(defmethod monom-right-tensor-product-by ((self monom) (other monom))
[3323]290 (with-slots ((exponents1 exponents))
[3026]291 self
[3323]292 (with-slots ((exponents2 exponents))
[3026]293 other
[3323]294 (setf exponents1 (concatenate 'vector exponents1 exponents2))))
[3036]295 self)
[3026]296
[3441]297(defmethod monom-left-contract ((self monom) k)
[1638]298 "Drop the first K variables in monomial M."
[2085]299 (declare (fixnum k))
[3323]300 (with-slots (exponents)
[3040]301 self
[3323]302 (setf exponents (subseq exponents k)))
[3039]303 self)
[886]304
305(defun make-monom-variable (nvars pos &optional (power 1)
[2218]306 &aux (m (make-instance 'monom :dimension nvars)))
[886]307 "Construct a monomial in the polynomial ring
308RING[X[0],X[1],X[2],...X[NVARS-1]] over the (unspecified) ring RING
309which represents a single variable. It assumes number of variables
310NVARS and the variable is at position POS. Optionally, the variable
311may appear raised to power POWER. "
[1924]312 (declare (type fixnum nvars pos power) (type monom m))
[2089]313 (with-slots (exponents)
314 m
[2154]315 (setf (elt exponents pos) power)
[2089]316 m))
[1151]317
[3441]318(defmethod monom->list ((m monom))
[1152]319 "A human-readable representation of a monomial M as a list of exponents."
[2779]320 (coerce (monom-exponents m) 'list))
Note: See TracBrowser for help on using the repository browser.