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

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

* empty log message *

File size: 8.2 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"
53 "R-TENSOR-PRODUCT"
[2444]54 "R-CONTRACT"
55 "R-LENGTH"
[2476]56 "MULTIPLY-BY"
[2823]57 "DIVIDE-BY"
[2485]58 "ADD-TO"
59 "SUBTRACT-FROM"
[2689]60 "UNARY-MINUS"
[2491]61 "SCALAR"
[2512]62 "INSERT-ITEM"
[2870]63 "APPEND-ITEM"
64 "COPY-INSTANCE")
[2879]65 (:shadowing-import-from
66 #+openmcl-native-threads #:ccl
67 #+cmu #:pcl
68 #+sbcl #:sb-pcl
69 #+lispworks #:hcl
70 #+allegro #:mop
71 #+clisp #:clos
72 #:class-slots #:slot-definition-name)
[2523]73 (:documentation
74 "Implements ring operations. These are all operations that are
75performed on the coefficients by the package, and thus the coefficient
76ring can be changed by merely redefining these operations."))
[2131]77
[421]78(in-package :ring)
79
[2498]80(defclass scalar ()
[2505]81 ((value :initarg :value :accessor value))
82 (:documentation "Wraps objects suitable as scalars/polynomial coefficients"))
[2492]83
[2509]84(defgeneric unit-element (class))
[2016]85
[2145]86(defgeneric r-zerop (object)
[2808]87 (:method ((self number)) (zerop self))
88 (:documentation "Tests whether a ring element is 0."))
[2016]89
[2145]90(defgeneric r+ (x y)
[2808]91 (:method ((x number) (y number)) (+ x y))
92 (:documentation "Adds ring elements."))
[2016]93
[2145]94(defgeneric r- (x y)
[2808]95 (:method ((x number) (y number)) (- x y))
96 (:documentation "Subtracts ring elements."))
[2118]97
[2145]98(defgeneric r* (x y)
[2808]99 (:method ((x number) (y number)) (* x y))
100 (:documentation "Multiplies ring elements."))
[2016]101
[3023]102(defgeneric lef-tensor-productby (self other)
103 (:documentation "Takes a tensor product of SELF with OTHER, where
104OTHER is the left factor."))
[2090]105
[2145]106(defgeneric r/ (x y)
[2808]107 (:method ((x number) (y number)) (/ x y))
108 (:documentation "Divides ring elements."))
[2016]109
[2145]110(defgeneric r-lcm (x y)
[2808]111 (:method ((x integer) (y integer)) (lcm x y))
112 (:documentation "Returns the least common multiple of ring elements."))
[2016]113
[2145]114(defgeneric r-expt (x y)
[2808]115 (:method ((x integer) (y integer)) (expt x y))
116 (:documentation "Raises X to power Y."))
[2121]117
[2145]118(defgeneric r-ezgcd (x y)
[2016]119 (:method ((x integer) (y integer)
[2145]120 &aux (c (gcd x y)))
[2808]121 (values c (/ x c) (/ y c)))
[2809]122 (:documentation "Solves the diophantine system: X=C*X1, Y=C*X2,
123C=GCD(X,Y). It returns C, X1 and Y1. The result may be obtained by
124the Euclidean algorithm."))
[2017]125
[2145]126(defgeneric r-gcd (x y)
[2017]127 (:method ((x integer) (y integer))
[2810]128 (gcd x y))
129 (:documentation "Returns GCD(X,Y)."))
[2017]130
[2145]131(defgeneric r-dimension (object))
[2368]132(defgeneric r-exponents (object))
[2631]133
[2369]134(defgeneric r-coeff (object))
[2631]135(defgeneric (setf r-coeff) (new-value object))
[2041]136
[2145]137(defgeneric r-total-degree (object &optional start end))
[2065]138
[2145]139(defgeneric r-divides-p (object1 object2)
[2043]140 (:method ((object1 integer) (object2 integer))
[2450]141 (zerop (rem object2 object1)))
[2062]142 (:documentation "Returns T if OBJECT1 divides OBJECT2"))
[2040]143
[2145]144(defgeneric r-divides-lcm-p (object1 object2 object3)
[2062]145 (:documentation "Returns T if OBJECT divides LCM(OBJECT2, OBJECT3), NIL otherwise."))
[2070]146
[2145]147(defgeneric r-lcm-divides-lcm-p (object1 object2 object3 object4)
[2071]148 (:documentation "Returns T if LCM(OBJECT1,OBJECT2) divides LCM(OBJECT3,OBJECT4), NIL otherwise."))
[2073]149
[2145]150(defgeneric r-lcm-equal-lcm-p (object1 object2 object3 object4)
[2107]151 (:documentation "Returns T if object LCM(OBJECT1,OBJECT2) equals LCM(OBJECT3,OBJECT4), NIL otherwise."))
[2133]152
[2145]153(defgeneric r-equalp (object1 object2)
[2720]154 (:method (object1 object2) (equalp object1 object2))
[2134]155 (:documentation "Equality using deep comparison of object slots."))
[2140]156
[2145]157(defgeneric r-elt (object index))
[2444]158
[2172]159(defgeneric (setf r-elt) (new-value object index))
[2140]160
[2444]161(defgeneric r-length (object))
162
[2151]163(defgeneric r->list (object))
[2158]164(defgeneric r-sugar (object))
[2175]165(defgeneric r-rel-prime-p (object1 object2))
[3023]166(defgeneric left-contract (object k))
[2179]167(defgeneric r-divisible-by-p (object1 object2))
[2180]168(defgeneric r-depends-p (object k))
[2475]169
[2482]170(defgeneric multiply-by (self other)
[2835]171 (:method (self other) (r* self other))
[2836]172 (:documentation "Multiply object SELF and OTHER and store the result
173into SELF. It returns SELF. For instances of a class, this operation
174may be destructive."))
[2484]175
[2820]176(defgeneric divide-by (self other)
[2835]177 (:method (self other) (r/ self other))
[2836]178 (:documentation "Divided object SELF by OTHER and store the result
179into SELF. It returns SELF. For instances of a class, this operation
180may be destructive."))
[2820]181
[2484]182(defgeneric add-to (self other)
[2712]183 (:documentation "Add to object SELF another object OTHER. For
184complex objects, it may destructively modify SELF and destructively
[2713]185modify/invalidate object OTHER. For standard classes implementing this
186method, the result should be an object which is EQ to SELF. For
187built-in classes, such as NUMBER, the returned object may not be EQ to
188the original, but it will be EQL to it.")
[2484]189 (:method (self other) (r+ self other)))
190
191(defgeneric subtract-from (self other)
[2714]192 (:documentation "Subtract from an object SELF another object OTHER.
193For complex objects, it may destructively modify SELF and
194destructively modify/invalidate object OTHER. For standard classes
195implementing this method, the result should be an object which is EQ
196to SELF. For built-in classes, such as NUMBER, the returned object may
[2715]197not be EQ to the original.")
[2484]198 (:method (self other) (r- self other)))
199
[2693]200(defgeneric unary-minus (self)
201 (:method ((x number)) (- x)))
[2484]202
[2511]203(defgeneric insert-item (self item))
204(defgeneric append-item (self item))
205
[2868]206;; Source: http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects
[3008]207;; NOTE: This is a shallow copy. Add an around method for classes which need deep copy of the slots.
[2868]208(defgeneric copy-instance (object &rest initargs &key &allow-other-keys)
209 (:documentation "Makes and returns a shallow copy of OBJECT.
210
211 An uninitialized object of the same class as OBJECT is allocated by
212 calling ALLOCATE-INSTANCE. For all slots returned by
213 CLASS-SLOTS, the returned object has the
214 same slot values and slot-unbound status as OBJECT.
215
216 REINITIALIZE-INSTANCE is called to update the copy with INITARGS.")
217 (:method ((object standard-object) &rest initargs &key &allow-other-keys)
218 (let* ((class (class-of object))
219 (copy (allocate-instance class)))
[3001]220 (dolist (slot-name (mapcar #'slot-definition-name (class-slots class)))
[2955]221 (when (slot-boundp object slot-name)
222 (setf (slot-value copy slot-name)
[3000]223 (slot-value object slot-name))))
[2999]224 (apply #'reinitialize-instance copy initargs))))
[2877]225
[3006]226#|
[3019]227;; A stripped-down version of shallow copy
[2878]228;; Source: http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects
[2877]229(defun shallow-copy-object (original)
230 (let* ((class (class-of original))
231 (copy (allocate-instance class)))
232 (dolist (slot (mapcar #'slot-definition-name (class-slots class)))
233 (when (slot-boundp original slot)
234 (setf (slot-value copy slot)
235 (slot-value original slot))))
236 copy))
[3006]237|#
Note: See TracBrowser for help on using the repository browser.