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

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

* empty log message *

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