[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"
|
---|
[3458] | 65 | "APPEND-ITEM")
|
---|
[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 ()
|
---|
[3138] | 82 | ((coeff :initarg :coeff :accessor scalar-coeff))
|
---|
[3137] | 83 | (:default-initargs :coeff nil)
|
---|
[2505] | 84 | (:documentation "Wraps objects suitable as scalars/polynomial coefficients"))
|
---|
[2492] | 85 |
|
---|
[3202] | 86 | (defmethod print-object ((self scalar) stream)
|
---|
[3210] | 87 | (print-unreadable-object (self stream :type t :identity t)
|
---|
| 88 | (format stream "COEFF=~A"
|
---|
| 89 | (slot-value self 'coeff))))
|
---|
[3206] | 90 |
|
---|
[2509] | 91 | (defgeneric unit-element (class))
|
---|
[2016] | 92 |
|
---|
[2145] | 93 | (defgeneric r-zerop (object)
|
---|
[2808] | 94 | (:method ((self number)) (zerop self))
|
---|
| 95 | (:documentation "Tests whether a ring element is 0."))
|
---|
[2016] | 96 |
|
---|
[2145] | 97 | (defgeneric r+ (x y)
|
---|
[2808] | 98 | (:method ((x number) (y number)) (+ x y))
|
---|
| 99 | (:documentation "Adds ring elements."))
|
---|
[2016] | 100 |
|
---|
[3424] | 101 | (defgeneric r- (minuend &rest subtrahends)
|
---|
| 102 | (:method ((minuend number) &rest subtrahends) (apply #'- (cons minuend subtrahends)))
|
---|
[2808] | 103 | (:documentation "Subtracts ring elements."))
|
---|
[2118] | 104 |
|
---|
[2145] | 105 | (defgeneric r* (x y)
|
---|
[3389] | 106 | (:method (x y) (* x y))
|
---|
[2808] | 107 | (:documentation "Multiplies ring elements."))
|
---|
[2016] | 108 |
|
---|
[3025] | 109 | (defgeneric left-tensor-product-by (self other)
|
---|
[3023] | 110 | (:documentation "Takes a tensor product of SELF with OTHER, where
|
---|
| 111 | OTHER is the left factor."))
|
---|
[2090] | 112 |
|
---|
[3025] | 113 | (defgeneric right-tensor-product-by (self other)
|
---|
[3024] | 114 | (:documentation "Takes a tensor product of SELF with OTHER, where
|
---|
| 115 | OTHER is the right factor."))
|
---|
| 116 |
|
---|
[3419] | 117 | (defgeneric r/ (numerator &rest denominators)
|
---|
| 118 | (:method ((numerator number) &rest denominators) (apply #'/ (cons numerator denominators)))
|
---|
[2808] | 119 | (:documentation "Divides ring elements."))
|
---|
[2016] | 120 |
|
---|
[2145] | 121 | (defgeneric r-lcm (x y)
|
---|
[2808] | 122 | (:method ((x integer) (y integer)) (lcm x y))
|
---|
| 123 | (:documentation "Returns the least common multiple of ring elements."))
|
---|
[2016] | 124 |
|
---|
[2145] | 125 | (defgeneric r-expt (x y)
|
---|
[3390] | 126 | (:method ((x number) (y integer)) (expt x y))
|
---|
[3389] | 127 | (:method ((x t) (y integer))
|
---|
[3385] | 128 | (declare (type fixnum y))
|
---|
[3384] | 129 | (cond
|
---|
[3385] | 130 | ((minusp y) (error "r-expt: Negative exponent."))
|
---|
| 131 | ((r-zerop x) (if (zerop y) 1))
|
---|
[3384] | 132 | (t
|
---|
| 133 | (do ((k 1 (ash k 1))
|
---|
[3386] | 134 | (q x (r* q q)) ;keep squaring
|
---|
[3390] | 135 | (p 1 (if (not (zerop (logand k y))) (r* p q) p)))
|
---|
[3387] | 136 | ((> k y) p)
|
---|
[3384] | 137 | (declare (fixnum k))))))
|
---|
[2808] | 138 | (:documentation "Raises X to power Y."))
|
---|
[2121] | 139 |
|
---|
[2145] | 140 | (defgeneric r-ezgcd (x y)
|
---|
[2016] | 141 | (:method ((x integer) (y integer)
|
---|
[2145] | 142 | &aux (c (gcd x y)))
|
---|
[2808] | 143 | (values c (/ x c) (/ y c)))
|
---|
[2809] | 144 | (:documentation "Solves the diophantine system: X=C*X1, Y=C*X2,
|
---|
| 145 | C=GCD(X,Y). It returns C, X1 and Y1. The result may be obtained by
|
---|
| 146 | the Euclidean algorithm."))
|
---|
[2017] | 147 |
|
---|
[2145] | 148 | (defgeneric r-gcd (x y)
|
---|
[2017] | 149 | (:method ((x integer) (y integer))
|
---|
[2810] | 150 | (gcd x y))
|
---|
| 151 | (:documentation "Returns GCD(X,Y)."))
|
---|
[2017] | 152 |
|
---|
[2145] | 153 | (defgeneric r-dimension (object))
|
---|
[2368] | 154 | (defgeneric r-exponents (object))
|
---|
[2631] | 155 |
|
---|
[2369] | 156 | (defgeneric r-coeff (object))
|
---|
[2631] | 157 | (defgeneric (setf r-coeff) (new-value object))
|
---|
[2041] | 158 |
|
---|
[2145] | 159 | (defgeneric r-total-degree (object &optional start end))
|
---|
[2065] | 160 |
|
---|
[2145] | 161 | (defgeneric r-divides-p (object1 object2)
|
---|
[2043] | 162 | (:method ((object1 integer) (object2 integer))
|
---|
[2450] | 163 | (zerop (rem object2 object1)))
|
---|
[2062] | 164 | (:documentation "Returns T if OBJECT1 divides OBJECT2"))
|
---|
[2040] | 165 |
|
---|
[2145] | 166 | (defgeneric r-divides-lcm-p (object1 object2 object3)
|
---|
[2062] | 167 | (:documentation "Returns T if OBJECT divides LCM(OBJECT2, OBJECT3), NIL otherwise."))
|
---|
[2070] | 168 |
|
---|
[2145] | 169 | (defgeneric r-lcm-divides-lcm-p (object1 object2 object3 object4)
|
---|
[2071] | 170 | (:documentation "Returns T if LCM(OBJECT1,OBJECT2) divides LCM(OBJECT3,OBJECT4), NIL otherwise."))
|
---|
[2073] | 171 |
|
---|
[2145] | 172 | (defgeneric r-lcm-equal-lcm-p (object1 object2 object3 object4)
|
---|
[2107] | 173 | (:documentation "Returns T if object LCM(OBJECT1,OBJECT2) equals LCM(OBJECT3,OBJECT4), NIL otherwise."))
|
---|
[2133] | 174 |
|
---|
[2145] | 175 | (defgeneric r-equalp (object1 object2)
|
---|
[2720] | 176 | (:method (object1 object2) (equalp object1 object2))
|
---|
[3100] | 177 | (:method ((object1 list) (object2 list))
|
---|
| 178 | (every #'r-equalp object1 object2))
|
---|
[3275] | 179 | (:method ((object1 scalar) (object2 scalar))
|
---|
| 180 | (r-equalp (scalar-coeff object1) (scalar-coeff object2)))
|
---|
[2134] | 181 | (:documentation "Equality using deep comparison of object slots."))
|
---|
[2140] | 182 |
|
---|
[3051] | 183 | (defgeneric r-elt (object index)
|
---|
[3052] | 184 | (:documentation "Access a part of an object OBJECT with index INDEX."))
|
---|
[2444] | 185 |
|
---|
[3053] | 186 | (defgeneric (setf r-elt) (new-value object index)
|
---|
| 187 | (:documentation "A setter of a part of an object OBJECT with index INDEX."))
|
---|
[2140] | 188 |
|
---|
[2444] | 189 | (defgeneric r-length (object))
|
---|
| 190 |
|
---|
[2151] | 191 | (defgeneric r->list (object))
|
---|
[2158] | 192 | (defgeneric r-sugar (object))
|
---|
[2175] | 193 | (defgeneric r-rel-prime-p (object1 object2))
|
---|
[3023] | 194 | (defgeneric left-contract (object k))
|
---|
[2179] | 195 | (defgeneric r-divisible-by-p (object1 object2))
|
---|
[2180] | 196 | (defgeneric r-depends-p (object k))
|
---|
[2475] | 197 |
|
---|
[2482] | 198 | (defgeneric multiply-by (self other)
|
---|
[2835] | 199 | (:method (self other) (r* self other))
|
---|
[2836] | 200 | (:documentation "Multiply object SELF and OTHER and store the result
|
---|
| 201 | into SELF. It returns SELF. For instances of a class, this operation
|
---|
| 202 | may be destructive."))
|
---|
[2484] | 203 |
|
---|
[2820] | 204 | (defgeneric divide-by (self other)
|
---|
[2835] | 205 | (:method (self other) (r/ self other))
|
---|
[2836] | 206 | (:documentation "Divided object SELF by OTHER and store the result
|
---|
| 207 | into SELF. It returns SELF. For instances of a class, this operation
|
---|
| 208 | may be destructive."))
|
---|
[2820] | 209 |
|
---|
[2484] | 210 | (defgeneric add-to (self other)
|
---|
[2712] | 211 | (:documentation "Add to object SELF another object OTHER. For
|
---|
| 212 | complex objects, it may destructively modify SELF and destructively
|
---|
[2713] | 213 | modify/invalidate object OTHER. For standard classes implementing this
|
---|
| 214 | method, the result should be an object which is EQ to SELF. For
|
---|
| 215 | built-in classes, such as NUMBER, the returned object may not be EQ to
|
---|
| 216 | the original, but it will be EQL to it.")
|
---|
[2484] | 217 | (:method (self other) (r+ self other)))
|
---|
| 218 |
|
---|
| 219 | (defgeneric subtract-from (self other)
|
---|
[2714] | 220 | (:documentation "Subtract from an object SELF another object OTHER.
|
---|
| 221 | For complex objects, it may destructively modify SELF and
|
---|
| 222 | destructively modify/invalidate object OTHER. For standard classes
|
---|
| 223 | implementing this method, the result should be an object which is EQ
|
---|
| 224 | to SELF. For built-in classes, such as NUMBER, the returned object may
|
---|
[2715] | 225 | not be EQ to the original.")
|
---|
[2484] | 226 | (:method (self other) (r- self other)))
|
---|
| 227 |
|
---|
[2693] | 228 | (defgeneric unary-minus (self)
|
---|
| 229 | (:method ((x number)) (- x)))
|
---|
[2484] | 230 |
|
---|
[2511] | 231 | (defgeneric insert-item (self item))
|
---|
| 232 | (defgeneric append-item (self item))
|
---|