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@ 725

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

* empty log message *

File size: 6.3 KB
Line 
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
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;;
37;; Monom x*y^2 ---> (1 2)
38;;
39;;----------------------------------------------------------------
40
41(defpackage "MONOMIAL"
42 (:use :cl)
43 (:export "MONOM"
44 "EXPONENT"
45 "MAKE-MONOM"
46 "MONOM-ELT"
47 "MONOM-DIMENSION"
48 "MONOM-TOTAL-DEGREE"
49 "MONOM-SUGAR"
50 "MONOM-DIV"
51 "MONOM-MUL"
52 "MONOM-DIVIDES-P"
53 "MONOM-DIVIDES-MONOM-LCM-P"
54 "MONOM-LCM-DIVIDES-MONOM-LCM-P"
55 "MONOM-LCM-EQUAL-MONOM-LCM-P"
56 "MONOM-DIVISIBLE-BY-P"
57 "MONOM-REL-PRIME-P"
58 "MONOM-EQUAL-P"
59 "MONOM-LCM"
60 "MONOM-GCD"
61 "MONOM-DEPENDS-P"
62 "MONOM-MAP"
63 "MONOM-APPEND"
64 "MONOM-CONTRACT"
65 "MONOM-EXPONENTS"))
66
67(in-package :monomial)
68
69(deftype exponent ()
70 "Type of exponent in a monomial."
71 'fixnum)
72
73(defstruct (monom
74 ;; BOA constructor
75 (:constructor make-monom (&optional dim (exponents (make-array (list dim) :element-type 'exponent)))))
76 (dim 0 :type fixnum)
77 (exponents #() :type (vector exponent *)))
78
79
80
81#|
82
83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
84;;
85;; Operations on monomials
86;;
87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
88
89(defmacro monom-elt (m index)
90 "Return the power in the monomial M of variable number INDEX."
91 `(elt ,m ,index))
92
93(defun monom-dimension (m)
94 "Return the number of variables in the monomial M."
95 (length m))
96
97(defun monom-total-degree (m &optional (start 0) (end (length m)))
98 "Return the todal degree of a monomoal M. Optinally, a range
99of variables may be specified with arguments START and END."
100 (declare (type monom m) (fixnum start end))
101 (reduce #'+ m :start start :end end))
102
103(defun monom-sugar (m &aux (start 0) (end (length m)))
104 "Return the sugar of a monomial M. Optinally, a range
105of variables may be specified with arguments START and END."
106 (declare (type monom m) (fixnum start end))
107 (monom-total-degree m start end))
108
109(defun monom-div (m1 m2 &aux (result (copy-seq m1)))
110 "Divide monomial M1 by monomial M2."
111 (declare (type monom m1 m2 result))
112 (map-into result #'- m1 m2))
113
114(defun monom-mul (m1 m2 &aux (result (copy-seq m1)))
115 "Multiply monomial M1 by monomial M2."
116 (declare (type monom m1 m2 result))
117 (map-into result #'+ m1 m2))
118
119(defun monom-divides-p (m1 m2)
120 "Returns T if monomial M1 divides monomial M2, NIL otherwise."
121 (declare (type monom m1 m2))
122 (every #'<= m1 m2))
123
124(defun monom-divides-monom-lcm-p (m1 m2 m3)
125 "Returns T if monomial M1 divides MONOM-LCM(M2,M3), NIL otherwise."
126 (declare (type monom m1 m2 m3))
127 (every #'(lambda (x y z) (declare (type exponent x y z)) (<= x (max y z))) m1 m2 m3))
128
129(defun monom-lcm-divides-monom-lcm-p (m1 m2 m3 m4)
130 "Returns T if monomial MONOM-LCM(M1,M2) divides MONOM-LCM(M3,M4), NIL otherwise."
131 (declare (type monom m1 m2 m3 m4))
132 (every #'(lambda (x y z w) (declare (type exponent x y z w)) (<= (max x y) (max z w))) m1 m2 m3 m4))
133
134(defun monom-lcm-equal-monom-lcm-p (m1 m2 m3 m4)
135 "Returns T if monomial MONOM-LCM(M1,M2) equals MONOM-LCM(M3,M4), NIL otherwise."
136 (declare (type monom m1 m2 m3 m4))
137 (every #'(lambda (x y z w) (declare (type exponent x y z w)) (= (max x y) (max z w))) m1 m2 m3 m4))
138
139(defun monom-divisible-by-p (m1 m2)
140 "Returns T if monomial M1 is divisible by monomial M2, NIL otherwise."
141 (declare (type monom m1 m2))
142 (every #'>= m1 m2))
143
144(defun monom-rel-prime-p (m1 m2)
145 "Returns T if two monomials M1 and M2 are relatively prime (disjoint)."
146 (declare (type monom m1 m2))
147 (every #'(lambda (x y) (declare (type exponent x y)) (zerop (min x y))) m1 m2))
148
149(defun monom-equal-p (m1 m2)
150 "Returns T if two monomials M1 and M2 are equal."
151 (declare (type monom m1 m2))
152 (every #'= m1 m2))
153
154(defun monom-lcm (m1 m2 &aux (result (copy-seq m1)))
155 "Returns least common multiple of monomials M1 and M2."
156 (declare (type monom m1 m2))
157 (map-into result #'max m1 m2))
158
159(defun monom-gcd (m1 m2 &aux (result (copy-seq m1)))
160 "Returns greatest common divisor of monomials M1 and M2."
161 (declare (type monom m1 m2))
162 (map-into result #'min m1 m2))
163
164(defun monom-depends-p (m k)
165 "Return T if the monomial M depends on variable number K."
166 (declare (type monom m) (fixnum k))
167 (plusp (elt m k)))
168
169(defmacro monom-map (fun m &rest ml &aux (result `(copy-seq ,m)))
170 `(map-into ,result ,fun ,m ,@ml))
171
172(defmacro monom-append (m1 m2)
173 `(concatenate 'monom ,m1 ,m2))
174
175(defmacro monom-contract (k m)
176 `(subseq ,m ,k))
177
178(defun monom-exponents (m)
179 (declare (type monom m))
180 (coerce m 'list))
181|#
Note: See TracBrowser for help on using the repository browser.