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/ring.lisp@ 3051

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

* empty log message *

File size: 8.5 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(defpackage "RING"
23 (:use :cl)
24 (:export "R-PARSE"
25 "UNIT-ELEMENT"
26 "R-ZEROP"
27 "R+"
28 "R-"
29 "R*"
30 "R+"
31 "R/"
32 "R-EXPT"
33 "R-LCM"
34 "R-EZGCD"
35 "R-GCD"
36 "R-TOTAL-DEGREE"
37 "R-DIMENSION"
38 "R-EXPONENTS"
39 "R-COEFF"
40 "R-SUGAR"
41 "R-DIVIDES-P"
42 "R-DIVIDES-LCM-P"
43 "R-LCM-DIVIDES-LCM-P"
44 "R-LCM-EQUAL-LCM-P"
45 "R-REL-PRIME-P"
46 "R-EQUALP"
47 "R-CLONE"
48 "R-ELT"
49 "R->LIST"
50 "R-DIVISIBLE-BY-P"
51 "R-REL-PRIME-P"
52 "R-DEPENDS-P"
53 "LEFT-TENSOR-PRODUCT-BY"
54 "RIGHT-TENSOR-PRODUCT-BY"
55 "LEFT-CONTRACT"
56 "R-LENGTH"
57 "MULTIPLY-BY"
58 "DIVIDE-BY"
59 "ADD-TO"
60 "SUBTRACT-FROM"
61 "UNARY-MINUS"
62 "SCALAR"
63 "INSERT-ITEM"
64 "APPEND-ITEM"
65 "COPY-INSTANCE")
66 (:shadowing-import-from
67 #+openmcl-native-threads #:ccl
68 #+cmu #:pcl
69 #+sbcl #:sb-pcl
70 #+lispworks #:hcl
71 #+allegro #:mop
72 #+clisp #:clos
73 #:class-slots #:slot-definition-name)
74 (:documentation
75 "Implements ring operations. These are all operations that are
76performed on the coefficients by the package, and thus the coefficient
77ring can be changed by merely redefining these operations."))
78
79(in-package :ring)
80
81(defclass scalar ()
82 ((value :initarg :value :accessor value))
83 (:documentation "Wraps objects suitable as scalars/polynomial coefficients"))
84
85(defgeneric unit-element (class))
86
87(defgeneric r-zerop (object)
88 (:method ((self number)) (zerop self))
89 (:documentation "Tests whether a ring element is 0."))
90
91(defgeneric r+ (x y)
92 (:method ((x number) (y number)) (+ x y))
93 (:documentation "Adds ring elements."))
94
95(defgeneric r- (x y)
96 (:method ((x number) (y number)) (- x y))
97 (:documentation "Subtracts ring elements."))
98
99(defgeneric r* (x y)
100 (:method ((x number) (y number)) (* x y))
101 (:documentation "Multiplies ring elements."))
102
103(defgeneric left-tensor-product-by (self other)
104 (:documentation "Takes a tensor product of SELF with OTHER, where
105OTHER is the left factor."))
106
107(defgeneric right-tensor-product-by (self other)
108 (:documentation "Takes a tensor product of SELF with OTHER, where
109OTHER is the right factor."))
110
111(defgeneric r/ (x y)
112 (:method ((x number) (y number)) (/ x y))
113 (:documentation "Divides ring elements."))
114
115(defgeneric r-lcm (x y)
116 (:method ((x integer) (y integer)) (lcm x y))
117 (:documentation "Returns the least common multiple of ring elements."))
118
119(defgeneric r-expt (x y)
120 (:method ((x integer) (y integer)) (expt x y))
121 (:documentation "Raises X to power Y."))
122
123(defgeneric r-ezgcd (x y)
124 (:method ((x integer) (y integer)
125 &aux (c (gcd x y)))
126 (values c (/ x c) (/ y c)))
127 (:documentation "Solves the diophantine system: X=C*X1, Y=C*X2,
128C=GCD(X,Y). It returns C, X1 and Y1. The result may be obtained by
129the Euclidean algorithm."))
130
131(defgeneric r-gcd (x y)
132 (:method ((x integer) (y integer))
133 (gcd x y))
134 (:documentation "Returns GCD(X,Y)."))
135
136(defgeneric r-dimension (object))
137(defgeneric r-exponents (object))
138
139(defgeneric r-coeff (object))
140(defgeneric (setf r-coeff) (new-value object))
141
142(defgeneric r-total-degree (object &optional start end))
143
144(defgeneric r-divides-p (object1 object2)
145 (:method ((object1 integer) (object2 integer))
146 (zerop (rem object2 object1)))
147 (:documentation "Returns T if OBJECT1 divides OBJECT2"))
148
149(defgeneric r-divides-lcm-p (object1 object2 object3)
150 (:documentation "Returns T if OBJECT divides LCM(OBJECT2, OBJECT3), NIL otherwise."))
151
152(defgeneric r-lcm-divides-lcm-p (object1 object2 object3 object4)
153 (:documentation "Returns T if LCM(OBJECT1,OBJECT2) divides LCM(OBJECT3,OBJECT4), NIL otherwise."))
154
155(defgeneric r-lcm-equal-lcm-p (object1 object2 object3 object4)
156 (:documentation "Returns T if object LCM(OBJECT1,OBJECT2) equals LCM(OBJECT3,OBJECT4), NIL otherwise."))
157
158(defgeneric r-equalp (object1 object2)
159 (:method (object1 object2) (equalp object1 object2))
160 (:documentation "Equality using deep comparison of object slots."))
161
162(defgeneric r-elt (object index)
163 (:documentation "Access a part of an object OBJECT with index INDEX.")
164
165(defgeneric (setf r-elt) (new-value object index))
166
167(defgeneric r-length (object))
168
169(defgeneric r->list (object))
170(defgeneric r-sugar (object))
171(defgeneric r-rel-prime-p (object1 object2))
172(defgeneric left-contract (object k))
173(defgeneric r-divisible-by-p (object1 object2))
174(defgeneric r-depends-p (object k))
175
176(defgeneric multiply-by (self other)
177 (:method (self other) (r* self other))
178 (:documentation "Multiply object SELF and OTHER and store the result
179into SELF. It returns SELF. For instances of a class, this operation
180may be destructive."))
181
182(defgeneric divide-by (self other)
183 (:method (self other) (r/ self other))
184 (:documentation "Divided object SELF by OTHER and store the result
185into SELF. It returns SELF. For instances of a class, this operation
186may be destructive."))
187
188(defgeneric add-to (self other)
189 (:documentation "Add to object SELF another object OTHER. For
190complex objects, it may destructively modify SELF and destructively
191modify/invalidate object OTHER. For standard classes implementing this
192method, the result should be an object which is EQ to SELF. For
193built-in classes, such as NUMBER, the returned object may not be EQ to
194the original, but it will be EQL to it.")
195 (:method (self other) (r+ self other)))
196
197(defgeneric subtract-from (self other)
198 (:documentation "Subtract from an object SELF another object OTHER.
199For complex objects, it may destructively modify SELF and
200destructively modify/invalidate object OTHER. For standard classes
201implementing this method, the result should be an object which is EQ
202to SELF. For built-in classes, such as NUMBER, the returned object may
203not be EQ to the original.")
204 (:method (self other) (r- self other)))
205
206(defgeneric unary-minus (self)
207 (:method ((x number)) (- x)))
208
209(defgeneric insert-item (self item))
210(defgeneric append-item (self item))
211
212;; Source: http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects
213;; NOTE: This is a shallow copy. Add an around method for classes which need deep copy of the slots.
214(defgeneric copy-instance (object &rest initargs &key &allow-other-keys)
215 (:documentation "Makes and returns a shallow copy of OBJECT.
216
217 An uninitialized object of the same class as OBJECT is allocated by
218 calling ALLOCATE-INSTANCE. For all slots returned by
219 CLASS-SLOTS, the returned object has the
220 same slot values and slot-unbound status as OBJECT.
221
222 REINITIALIZE-INSTANCE is called to update the copy with INITARGS.")
223 (:method ((object standard-object) &rest initargs &key &allow-other-keys)
224 (let* ((class (class-of object))
225 (copy (allocate-instance class)))
226 (dolist (slot-name (mapcar #'slot-definition-name (class-slots class)))
227 (when (slot-boundp object slot-name)
228 (setf (slot-value copy slot-name)
229 (slot-value object slot-name))))
230 (apply #'reinitialize-instance copy initargs))))
231
232#|
233;; A stripped-down version of shallow copy
234;; Source: http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects
235(defun shallow-copy-object (original)
236 (let* ((class (class-of original))
237 (copy (allocate-instance class)))
238 (dolist (slot (mapcar #'slot-definition-name (class-slots class)))
239 (when (slot-boundp original slot)
240 (setf (slot-value copy slot)
241 (slot-value original slot))))
242 copy))
243|#
Note: See TracBrowser for help on using the repository browser.