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