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/monomial.lisp@ 867

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

* empty log message *

File size: 8.0 KB
RevLine 
[81]1;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*-
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
[394]41(defpackage "MONOMIAL"
[395]42 (:use :cl)
[422]43 (:export "MONOM"
[423]44 "EXPONENT"
[422]45 "MAKE-MONOM"
[396]46 "MONOM-ELT"
47 "MONOM-DIMENSION"
48 "MONOM-TOTAL-DEGREE"
49 "MONOM-SUGAR"
50 "MONOM-DIV"
51 "MONOM-MUL"
52 "MONOM-DIVIDES-P"
[395]53 "MONOM-DIVIDES-MONOM-LCM-P"
54 "MONOM-LCM-DIVIDES-MONOM-LCM-P"
[497]55 "MONOM-LCM-EQUAL-MONOM-LCM-P"
[395]56 "MONOM-DIVISIBLE-BY-P"
57 "MONOM-REL-PRIME-P"
58 "MONOM-EQUAL-P"
59 "MONOM-LCM"
60 "MONOM-GCD"
[504]61 "MONOM-DEPENDS-P"
[395]62 "MONOM-MAP"
63 "MONOM-APPEND"
64 "MONOM-CONTRACT"
65 "MONOM-EXPONENTS"))
[81]66
[419]67(in-package :monomial)
[48]68
69(deftype exponent ()
70 "Type of exponent in a monomial."
71 'fixnum)
72
[723]73(defstruct (monom
[725]74 ;; BOA constructor
[841]75 ;; NOTE: having a non-default constructor inhibits reading via #S(...)
[842]76 (:constructor make-monom (&key
[848]77 (dimension nil dimension-suppied-p)
78 (initial-exponents nil initial-exponents-supplied-p)
79 (initial-exponent nil initial-exponent-supplied-p)
[843]80 &aux
[848]81 (dim (cond (dimension-suppied-p dimension)
[849]82 (initial-exponents-supplied-p (length initial-exponents))
[848]83 (t (error "You must provide DIMENSION nor INITIAL-EXPONENTS"))))
[838]84 (exponents (cond
85 ;; when exponents are supplied
86 (initial-exponents-supplied-p
[848]87 (make-array (list dim) :initial-contents initial-exponents
[838]88 :element-type 'exponent))
89 ;; when all exponents are to be identical
[852]90 (initial-exponent-supplied-p
[848]91 (make-array (list dim) :initial-element initial-exponent
[838]92 :element-type 'exponent))
93 ;; otherwise, all exponents are zero
[850]94 (t
95 (make-array (list dim) :element-type 'exponent :initial-element 0))))))
[837]96 )
[726]97 (exponents nil :type (vector exponent *)))
[717]98
[837]99
[48]100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
101;;
102;; Operations on monomials
103;;
104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
105
[745]106(defun monom-dimension (m)
107 (declare (type monom m))
[746]108 (length (monom-exponents m)))
[745]109
[48]110(defmacro monom-elt (m index)
111 "Return the power in the monomial M of variable number INDEX."
[727]112 `(elt (monom-exponents ,m) ,index))
[48]113
[747]114(defun monom-total-degree (m &optional (start 0) (end (monom-dimension m)))
[48]115 "Return the todal degree of a monomoal M. Optinally, a range
116of variables may be specified with arguments START and END."
117 (declare (type monom m) (fixnum start end))
[728]118 (reduce #'+ (monom-exponents m) :start start :end end))
[48]119
[747]120(defun monom-sugar (m &aux (start 0) (end (monom-dimension m)))
[48]121 "Return the sugar of a monomial M. Optinally, a range
122of variables may be specified with arguments START and END."
123 (declare (type monom m) (fixnum start end))
[749]124 (monom-total-degree m start end))
[48]125
[729]126(defun monom-div (m1 m2 &aux (result (copy-structure m1)))
[48]127 "Divide monomial M1 by monomial M2."
[728]128 (declare (type monom m1 m2))
[729]129 (map-into (monom-exponents result) #'- (monom-exponents m1) (monom-exponents m2))
130 result)
[48]131
[729]132(defun monom-mul (m1 m2 &aux (result (copy-structure m1)))
[48]133 "Multiply monomial M1 by monomial M2."
134 (declare (type monom m1 m2 result))
[729]135 (map-into (monom-exponents result) #'+ (monom-exponents m1) (monom-exponents m2))
136 result)
[48]137
138(defun monom-divides-p (m1 m2)
139 "Returns T if monomial M1 divides monomial M2, NIL otherwise."
140 (declare (type monom m1 m2))
[730]141 (every #'<= (monom-exponents m1) (monom-exponents m2)))
[48]142
143(defun monom-divides-monom-lcm-p (m1 m2 m3)
144 "Returns T if monomial M1 divides MONOM-LCM(M2,M3), NIL otherwise."
145 (declare (type monom m1 m2 m3))
[731]146 (every #'(lambda (x y z) (declare (type exponent x y z)) (<= x (max y z)))
147 (monom-exponents m1)
148 (monom-exponents m2)
149 (monom-exponents m3)))
[48]150
151(defun monom-lcm-divides-monom-lcm-p (m1 m2 m3 m4)
152 "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
153 (declare (type monom m1 m2 m3 m4))
[732]154 (every #'(lambda (x y z w) (declare (type exponent x y z w)) (<= (max x y) (max z w)))
155 (monom-exponents m1)
156 (monom-exponents m2)
157 (monom-exponents m3)
158 (monom-exponents m4)))
[48]159
160(defun monom-lcm-equal-monom-lcm-p (m1 m2 m3 m4)
161 "Returns T if monomial MONOM-LCM(M1,M2) equals MONOM-LCM(M3,M4), NIL otherwise."
162 (declare (type monom m1 m2 m3 m4))
[733]163 (every #'(lambda (x y z w) (declare (type exponent x y z w)) (= (max x y) (max z w)))
164 (monom-exponents m1)
165 (monom-exponents m2)
166 (monom-exponents m3)
167 (monom-exponents m4)))
[48]168
169(defun monom-divisible-by-p (m1 m2)
170 "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
171 (declare (type monom m1 m2))
[733]172 (every #'>= (monom-exponents m1) (monom-exponents m2)))
[48]173
174(defun monom-rel-prime-p (m1 m2)
175 "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
176 (declare (type monom m1 m2))
[734]177 (every #'(lambda (x y) (declare (type exponent x y)) (zerop (min x y)))
178 (monom-exponents m1)
179 (monom-exponents m2)))
[48]180
181(defun monom-equal-p (m1 m2)
182 "Returns T if two monomials M1 and M2 are equal."
183 (declare (type monom m1 m2))
[735]184 (every #'= (monom-exponents m1) (monom-exponents m2)))
[48]185
[736]186(defun monom-lcm (m1 m2 &aux (result (copy-structure m1)))
[48]187 "Returns least common multiple of monomials M1 and M2."
188 (declare (type monom m1 m2))
[736]189 (map-into (monom-exponents result) #'max
190 (monom-exponents m1)
[737]191 (monom-exponents m2))
192 result)
[48]193
[737]194(defun monom-gcd (m1 m2 &aux (result (copy-structure m1)))
[48]195 "Returns greatest common divisor of monomials M1 and M2."
196 (declare (type monom m1 m2))
[737]197 (map-into (monom-exponents result) #'min (monom-exponents m1) (monom-exponents m2))
198 result)
[48]199
200(defun monom-depends-p (m k)
201 "Return T if the monomial M depends on variable number K."
202 (declare (type monom m) (fixnum k))
[738]203 (plusp (monom-elt m k)))
[48]204
[738]205(defmacro monom-map (fun m &rest ml &aux (result `(copy-structure ,m)))
[866]206 `(map-into (monom-exponents ,result) ,fun (monom-exponents ,m) ,@ml))
[48]207
208(defmacro monom-append (m1 m2)
[835]209 `(make-monom :exponents (concatenate 'vector (monom-exponents ,m1) (monom-exponents ,m2))))
[48]210
211(defmacro monom-contract (k m)
[740]212 `(setf (monom-exponents ,m) (subseq (monom-exponents ,m) ,k)))
Note: See TracBrowser for help on using the repository browser.