[4228] | 1 | ;;; -*- Mode: Lisp -*-
|
---|
| 2 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 3 | ;;;
|
---|
| 4 | ;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
|
---|
| 5 | ;;;
|
---|
| 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
|
---|
| 9 | ;;; (at your option) any later version.
|
---|
| 10 | ;;;
|
---|
| 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.
|
---|
| 15 | ;;;
|
---|
| 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.
|
---|
| 19 | ;;;
|
---|
| 20 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 21 |
|
---|
| 22 | (defpackage "RING"
|
---|
[4332] | 23 | (:use :cl :copy)
|
---|
[4228] | 24 | (:export "RING"
|
---|
[4342] | 25 | "FIELD"
|
---|
[4228] | 26 | "ADD-TO"
|
---|
| 27 | "SUBTRACT-FROM"
|
---|
| 28 | "MULTIPLY-BY"
|
---|
| 29 | "DIVIDE-BY"
|
---|
[4383] | 30 | "ADD"
|
---|
| 31 | "SUBTRACT"
|
---|
[4354] | 32 | "MULTIPLY"
|
---|
| 33 | "DIVIDE"
|
---|
[4231] | 34 | "UNARY-MINUS"
|
---|
[4246] | 35 | "UNARY-INVERSE"
|
---|
[4249] | 36 | "UNIVERSAL-GCD"
|
---|
[4228] | 37 | "UNIVERSAL-EZGCD"
|
---|
| 38 | "UNIVERSAL-EQUALP"
|
---|
| 39 | "UNIVERSAL-ZEROP"
|
---|
[4279] | 40 | "MAKE-ZERO-FOR"
|
---|
| 41 | "MAKE-UNIT-FOR"
|
---|
[4323] | 42 | "->SEXP"
|
---|
| 43 | "RATIONAL-FIELD"
|
---|
| 44 | "RATIONAL-FIELD-VALUE"
|
---|
| 45 | "MAKE-ZERO-FOR"
|
---|
| 46 | "MAKE-UNIT-FOR"
|
---|
| 47 | "INTEGER-RING"
|
---|
| 48 | "INTEGER-RING-VALUE"
|
---|
| 49 | )
|
---|
| 50 | (:documentation "Defines an abstract ring class and ring operations.")
|
---|
| 51 | )
|
---|
[4228] | 52 |
|
---|
| 53 | (in-package "RING")
|
---|
| 54 |
|
---|
| 55 | (defclass ring () () (:documentation "An abstract ring."))
|
---|
[4342] | 56 | (defclass field (ring) () (:documentation "An abstract ring."))
|
---|
[4228] | 57 |
|
---|
[4246] | 58 | (defgeneric multiply-by (self other)
|
---|
[4228] | 59 | (:documentation "Multiply SELF by OTHER."))
|
---|
| 60 |
|
---|
[4246] | 61 | (defgeneric divide-by (self other)
|
---|
| 62 | (:documentation "Divide SELF by OTHER."))
|
---|
| 63 |
|
---|
[4228] | 64 | (defgeneric add-to (self other)
|
---|
| 65 | (:documentation "Add OTHER to SELF."))
|
---|
| 66 |
|
---|
[4246] | 67 | (defgeneric subtract-from (self other)
|
---|
[4228] | 68 | (:documentation "Subtract OTHER from SELF."))
|
---|
| 69 |
|
---|
[4230] | 70 | (defgeneric unary-minus (self)
|
---|
[4234] | 71 | (:documentation "Changes SELF to its negative."))
|
---|
[4230] | 72 |
|
---|
[4246] | 73 | (defgeneric unary-inverse (self)
|
---|
[4273] | 74 | (:documentation "Changes SELF to the unary inverse of SELF."))
|
---|
[4246] | 75 |
|
---|
[4257] | 76 | (defgeneric universal-gcd (object other)
|
---|
[4274] | 77 | (:documentation "Returns GCD(OBJECT, OTHER)"))
|
---|
[4228] | 78 |
|
---|
[4248] | 79 | (defgeneric universal-ezgcd (x y)
|
---|
| 80 | (:documentation "Solves the diophantine system: X=C*X1, Y=C*X2,
|
---|
[4258] | 81 | C=GCD(X,Y). It returns three values: C, X1 and Y1. The result may be obtained by
|
---|
[4373] | 82 | the Euclidean algorithm.")
|
---|
| 83 | (:method ((x t) (y t) &aux (c (universal-gcd x y)))
|
---|
| 84 | (values c (divide x c) (divide y c))))
|
---|
[4248] | 85 |
|
---|
[4228] | 86 | (defgeneric universal-equalp (self other)
|
---|
| 87 | (:documentation "Return T if objects SELF and OTHER are equal, NIL otherwise.")
|
---|
[4447] | 88 | (:method ((object1 null) (object2 null)) t)
|
---|
[4311] | 89 | (:method ((object1 cons) (object2 cons)) (every #'universal-equalp object1 object2))
|
---|
| 90 | (:method ((self number) (other number)) (= self other)))
|
---|
[4228] | 91 |
|
---|
| 92 | (defgeneric universal-zerop (self)
|
---|
| 93 | (:documentation "Return T if SELF is a zero in the ring it belongs to."))
|
---|
| 94 |
|
---|
[4230] | 95 | (defgeneric ->sexp (self &optional vars)
|
---|
[4228] | 96 | (:documentation "Convert SELF to an S-expression."))
|
---|
[4248] | 97 |
|
---|
[4278] | 98 | (defgeneric make-zero-for (self)
|
---|
[4322] | 99 | (:documentation "Create a zero in the ring of SELF. A fresh instance
|
---|
| 100 | should be returned upon every call."))
|
---|
[4278] | 101 |
|
---|
| 102 | (defgeneric make-unit-for (self)
|
---|
[4322] | 103 | (:documentation "Create a unit in the ring of SELF. A fresh instance
|
---|
| 104 | should be returned upon every call."))
|
---|
[4349] | 105 |
|
---|
[4376] | 106 | (defgeneric add (summand &rest more-summands)
|
---|
[4379] | 107 | (:documentation "Successively adds to SUMMAND the elements of
|
---|
| 108 | MORE-SUMMANDS, using ADD-TO. The first SUMMAND must not be
|
---|
| 109 | destructively modified. Instead, a copy of factor should be made and
|
---|
| 110 | returned as the value of this function.")
|
---|
[4373] | 111 | (:method ((summand t) &rest more-summands)
|
---|
[4382] | 112 | "The default implementation of ADD."
|
---|
[4373] | 113 | (reduce #'add-to more-summands :initial-value (copy-instance summand))))
|
---|
| 114 |
|
---|
[4376] | 115 | (defgeneric subtract (minuend &rest subtrahends)
|
---|
[4379] | 116 | (:documentation "Successively subtracts SUBTRAHENDS from MINUEND,
|
---|
| 117 | using SUBTRACT-FROM. MINUEND. must not be destructively modified.
|
---|
[4378] | 118 | Instead, a copy of factor should be made and returned as the value of
|
---|
[4379] | 119 | this function.")
|
---|
[4376] | 120 | (:method ((minuend t) &rest subtrahends)
|
---|
[4382] | 121 | "The default implementation of SUBTRACT."
|
---|
[4376] | 122 | (cond ((endp subtrahends) (unary-minus (copy-instance minuend)))
|
---|
[4381] | 123 | (t (reduce #'subtract-from subtrahends :initial-value (copy-instance minuend))))))
|
---|
[4376] | 124 |
|
---|
[4349] | 125 | (defgeneric multiply (factor &rest more-factors)
|
---|
| 126 | (:documentation "Successively multiplies factor FACTOR by the remaining arguments
|
---|
[4352] | 127 | MORE-FACTORS, using MULTIPLY-BY to multiply two factors. FACTOR must not be destructively modified.
|
---|
| 128 | Instead, a copy of factor should be made and returned as the value of this function.")
|
---|
[4351] | 129 | (:method ((factor t) &rest more-factors)
|
---|
[4382] | 130 | "The default implementation of MULTIPLY."
|
---|
[4349] | 131 | (reduce #'multiply-by more-factors :initial-value (copy-instance factor))))
|
---|
| 132 |
|
---|
[4354] | 133 | (defgeneric divide (numerator &rest denominators)
|
---|
| 134 | (:documentation "Successively divides NUMERATOR by elements of DENOMINATORS. The operation
|
---|
| 135 | should not modify the NUMERATOR. Instead, a copy of factor should be made and returned as the value of this function.")
|
---|
| 136 | (:method ((numerator t) &rest denominators)
|
---|
[4382] | 137 | "The default implementation of DIVIDE."
|
---|
[4354] | 138 | (cond ((endp denominators)
|
---|
| 139 | (unary-inverse (copy-instance numerator)))
|
---|
| 140 | (t (reduce #'divide-by denominators :initial-value (copy-instance numerator))))))
|
---|
| 141 |
|
---|