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

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

* empty log message *

File size: 9.3 KB
RevLine 
[425]1;;; -*- mode: lisp; package: maxima; syntax: common-lisp; base: 10 -*-
[404]2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3;;;
[425]4;;; copyright (c) 1999, 2002, 2009, 2015 marek rychlik <rychlik@u.arizona.edu>
[404]5;;;
[425]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
[404]9;;; (at your option) any later version.
10;;;
[425]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.
[404]15;;;
[425]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.
[404]19;;;
20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
21
[405]22(defpackage "RING"
23 (:use :cl)
[2145]24 (:export "R-PARSE"
[2506]25 "UNIT-ELEMENT"
[2145]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"
[2367]38 "R-EXPONENTS"
[2369]39 "R-COEFF"
[2145]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"
[2839]46 "R-EQUALP"
47 "R-CLONE"
[2173]48 "R-ELT"
[2174]49 "R->LIST"
50 "R-DIVISIBLE-BY-P"
51 "R-REL-PRIME-P"
52 "R-DEPENDS-P"
[3028]53 "LEFT-TENSOR-PRODUCT-BY"
54 "RIGHT-TENSOR-PRODUCT-BY"
[3029]55 "LEFT-CONTRACT"
[2444]56 "R-LENGTH"
[2476]57 "MULTIPLY-BY"
[2823]58 "DIVIDE-BY"
[2485]59 "ADD-TO"
60 "SUBTRACT-FROM"
[2689]61 "UNARY-MINUS"
[2491]62 "SCALAR"
[3139]63 "SCALAR-COEFF"
[2512]64 "INSERT-ITEM"
[2870]65 "APPEND-ITEM"
66 "COPY-INSTANCE")
[2879]67 (:shadowing-import-from
68 #+openmcl-native-threads #:ccl
69 #+cmu #:pcl
70 #+sbcl #:sb-pcl
71 #+lispworks #:hcl
72 #+allegro #:mop
73 #+clisp #:clos
74 #:class-slots #:slot-definition-name)
[2523]75 (:documentation
76 "Implements ring operations. These are all operations that are
77performed on the coefficients by the package, and thus the coefficient
78ring can be changed by merely redefining these operations."))
[2131]79
[421]80(in-package :ring)
81
[2498]82(defclass scalar ()
[3138]83 ((coeff :initarg :coeff :accessor scalar-coeff))
[3137]84 (:default-initargs :coeff nil)
[2505]85 (:documentation "Wraps objects suitable as scalars/polynomial coefficients"))
[2492]86
[3202]87(defmethod print-object ((self scalar) stream)
[3210]88 (print-unreadable-object (self stream :type t :identity t)
89 (format stream "COEFF=~A"
90 (slot-value self 'coeff))))
[3206]91
[2509]92(defgeneric unit-element (class))
[2016]93
[2145]94(defgeneric r-zerop (object)
[2808]95 (:method ((self number)) (zerop self))
96 (:documentation "Tests whether a ring element is 0."))
[2016]97
[2145]98(defgeneric r+ (x y)
[2808]99 (:method ((x number) (y number)) (+ x y))
100 (:documentation "Adds ring elements."))
[2016]101
[2145]102(defgeneric r- (x y)
[2808]103 (:method ((x number) (y number)) (- x y))
104 (:documentation "Subtracts ring elements."))
[2118]105
[2145]106(defgeneric r* (x y)
[3389]107 (:method (x y) (* x y))
[2808]108 (:documentation "Multiplies ring elements."))
[2016]109
[3025]110(defgeneric left-tensor-product-by (self other)
[3023]111 (:documentation "Takes a tensor product of SELF with OTHER, where
112OTHER is the left factor."))
[2090]113
[3025]114(defgeneric right-tensor-product-by (self other)
[3024]115 (:documentation "Takes a tensor product of SELF with OTHER, where
116OTHER is the right factor."))
117
[3413]118(defgeneric r/ (x &rest y)
[3418]119 (:method ((x number) &rest y) (apply #'/ (cons x y)))
[2808]120 (:documentation "Divides ring elements."))
[2016]121
[2145]122(defgeneric r-lcm (x y)
[2808]123 (:method ((x integer) (y integer)) (lcm x y))
124 (:documentation "Returns the least common multiple of ring elements."))
[2016]125
[2145]126(defgeneric r-expt (x y)
[3390]127 (:method ((x number) (y integer)) (expt x y))
[3389]128 (:method ((x t) (y integer))
[3385]129 (declare (type fixnum y))
[3384]130 (cond
[3385]131 ((minusp y) (error "r-expt: Negative exponent."))
132 ((r-zerop x) (if (zerop y) 1))
[3384]133 (t
134 (do ((k 1 (ash k 1))
[3386]135 (q x (r* q q)) ;keep squaring
[3390]136 (p 1 (if (not (zerop (logand k y))) (r* p q) p)))
[3387]137 ((> k y) p)
[3384]138 (declare (fixnum k))))))
[2808]139 (:documentation "Raises X to power Y."))
[2121]140
[2145]141(defgeneric r-ezgcd (x y)
[2016]142 (:method ((x integer) (y integer)
[2145]143 &aux (c (gcd x y)))
[2808]144 (values c (/ x c) (/ y c)))
[2809]145 (:documentation "Solves the diophantine system: X=C*X1, Y=C*X2,
146C=GCD(X,Y). It returns C, X1 and Y1. The result may be obtained by
147the Euclidean algorithm."))
[2017]148
[2145]149(defgeneric r-gcd (x y)
[2017]150 (:method ((x integer) (y integer))
[2810]151 (gcd x y))
152 (:documentation "Returns GCD(X,Y)."))
[2017]153
[2145]154(defgeneric r-dimension (object))
[2368]155(defgeneric r-exponents (object))
[2631]156
[2369]157(defgeneric r-coeff (object))
[2631]158(defgeneric (setf r-coeff) (new-value object))
[2041]159
[2145]160(defgeneric r-total-degree (object &optional start end))
[2065]161
[2145]162(defgeneric r-divides-p (object1 object2)
[2043]163 (:method ((object1 integer) (object2 integer))
[2450]164 (zerop (rem object2 object1)))
[2062]165 (:documentation "Returns T if OBJECT1 divides OBJECT2"))
[2040]166
[2145]167(defgeneric r-divides-lcm-p (object1 object2 object3)
[2062]168 (:documentation "Returns T if OBJECT divides LCM(OBJECT2, OBJECT3), NIL otherwise."))
[2070]169
[2145]170(defgeneric r-lcm-divides-lcm-p (object1 object2 object3 object4)
[2071]171 (:documentation "Returns T if LCM(OBJECT1,OBJECT2) divides LCM(OBJECT3,OBJECT4), NIL otherwise."))
[2073]172
[2145]173(defgeneric r-lcm-equal-lcm-p (object1 object2 object3 object4)
[2107]174 (:documentation "Returns T if object LCM(OBJECT1,OBJECT2) equals LCM(OBJECT3,OBJECT4), NIL otherwise."))
[2133]175
[2145]176(defgeneric r-equalp (object1 object2)
[2720]177 (:method (object1 object2) (equalp object1 object2))
[3100]178 (:method ((object1 list) (object2 list))
179 (every #'r-equalp object1 object2))
[3275]180 (:method ((object1 scalar) (object2 scalar))
181 (r-equalp (scalar-coeff object1) (scalar-coeff object2)))
[2134]182 (:documentation "Equality using deep comparison of object slots."))
[2140]183
[3051]184(defgeneric r-elt (object index)
[3052]185 (:documentation "Access a part of an object OBJECT with index INDEX."))
[2444]186
[3053]187(defgeneric (setf r-elt) (new-value object index)
188 (:documentation "A setter of a part of an object OBJECT with index INDEX."))
[2140]189
[2444]190(defgeneric r-length (object))
191
[2151]192(defgeneric r->list (object))
[2158]193(defgeneric r-sugar (object))
[2175]194(defgeneric r-rel-prime-p (object1 object2))
[3023]195(defgeneric left-contract (object k))
[2179]196(defgeneric r-divisible-by-p (object1 object2))
[2180]197(defgeneric r-depends-p (object k))
[2475]198
[2482]199(defgeneric multiply-by (self other)
[2835]200 (:method (self other) (r* self other))
[2836]201 (:documentation "Multiply object SELF and OTHER and store the result
202into SELF. It returns SELF. For instances of a class, this operation
203may be destructive."))
[2484]204
[2820]205(defgeneric divide-by (self other)
[2835]206 (:method (self other) (r/ self other))
[2836]207 (:documentation "Divided object SELF by OTHER and store the result
208into SELF. It returns SELF. For instances of a class, this operation
209may be destructive."))
[2820]210
[2484]211(defgeneric add-to (self other)
[2712]212 (:documentation "Add to object SELF another object OTHER. For
213complex objects, it may destructively modify SELF and destructively
[2713]214modify/invalidate object OTHER. For standard classes implementing this
215method, the result should be an object which is EQ to SELF. For
216built-in classes, such as NUMBER, the returned object may not be EQ to
217the original, but it will be EQL to it.")
[2484]218 (:method (self other) (r+ self other)))
219
220(defgeneric subtract-from (self other)
[2714]221 (:documentation "Subtract from an object SELF another object OTHER.
222For complex objects, it may destructively modify SELF and
223destructively modify/invalidate object OTHER. For standard classes
224implementing this method, the result should be an object which is EQ
225to SELF. For built-in classes, such as NUMBER, the returned object may
[2715]226not be EQ to the original.")
[2484]227 (:method (self other) (r- self other)))
228
[2693]229(defgeneric unary-minus (self)
230 (:method ((x number)) (- x)))
[2484]231
[2511]232(defgeneric insert-item (self item))
233(defgeneric append-item (self item))
234
[2868]235;; Source: http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects
[3008]236;; NOTE: This is a shallow copy. Add an around method for classes which need deep copy of the slots.
[2868]237(defgeneric copy-instance (object &rest initargs &key &allow-other-keys)
238 (:documentation "Makes and returns a shallow copy of OBJECT.
239
240 An uninitialized object of the same class as OBJECT is allocated by
241 calling ALLOCATE-INSTANCE. For all slots returned by
242 CLASS-SLOTS, the returned object has the
243 same slot values and slot-unbound status as OBJECT.
244
245 REINITIALIZE-INSTANCE is called to update the copy with INITARGS.")
246 (:method ((object standard-object) &rest initargs &key &allow-other-keys)
247 (let* ((class (class-of object))
248 (copy (allocate-instance class)))
[3001]249 (dolist (slot-name (mapcar #'slot-definition-name (class-slots class)))
[2955]250 (when (slot-boundp object slot-name)
251 (setf (slot-value copy slot-name)
[3000]252 (slot-value object slot-name))))
[2999]253 (apply #'reinitialize-instance copy initargs))))
[2877]254
[3006]255#|
[3019]256;; A stripped-down version of shallow copy
[2878]257;; Source: http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects
[2877]258(defun shallow-copy-object (original)
259 (let* ((class (class-of original))
260 (copy (allocate-instance class)))
261 (dolist (slot (mapcar #'slot-definition-name (class-slots class)))
262 (when (slot-boundp original slot)
263 (setf (slot-value copy slot)
264 (slot-value original slot))))
265 copy))
[3006]266|#
Note: See TracBrowser for help on using the repository browser.