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/integer-ring.lisp@ 4264

Last change on this file since 4264 was 4264, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 4.0 KB
Line 
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 "INTEGER-RING"
23 (:use :cl :copy :ring)
24 (:export "INTEGER-RING"
25 "INTEGER-RING-VALUE"
26 "ADD-TO"
27 "SUBTRACT-FROM"
28 "MULTIPLY-BY"
29 "DIVIDE-BY"
30 "UNARY-MINUS"
31 "UNIVERSAL-GCD"
32 "UNIVERSAL-EZGCD"
33 "UNIVERSAL-EQUALP"
34 "UNIVERSAL-ZEROP"
35 "->SEXP")
36 (:documentation "Wraps integers into an object."))
37
38(in-package "INTEGER-RING")
39
40(defclass integer-ring (ring)
41 ((value :initarg :value :initform 0 :accessor integer-ring-value))
42 (:documentation "An object representing an integer.")
43 )
44
45(defmethod print-object ((self integer-ring) stream)
46 (print-unreadable-object (self stream :type t :identity t)
47 (with-accessors ((value integer-ring-value))
48 self
49 (format stream "VALUE=~A" value))))
50
51(defmethod multiply-by ((self integer-ring) (other integer-ring))
52 (with-slots (value)
53 self
54 (with-slots ((other-value value))
55 other
56 (setf value (* value other-value))))
57 self)
58
59(defmethod divide-by ((self integer-ring) (other integer-ring))
60 (with-slots (value)
61 self
62 (with-slots ((other-value value))
63 other
64 (assert (zerop (mod value other-value)))
65 (setf value (/ value other-value))))
66 self)
67
68(defmethod add-to ((self integer-ring) (other integer-ring))
69 (with-slots (value)
70 self
71 (with-slots ((other-value value))
72 other
73 (setf value (+ value other-value))))
74 self)
75
76(defmethod subtract-from ((self integer-ring) (other integer-ring))
77 (with-slots (value)
78 self
79 (with-slots ((other-value value))
80 other
81 (setf value (- value other-value))))
82 self)
83
84(defmethod unary-minus ((self integer-ring))
85 (with-slots (value)
86 self
87 (setf value (- value)))
88 self)
89
90(defmethod unary-inverse ((self integer-ring))
91 (with-slots (value)
92 self
93 (case value
94 (1 self)
95 (-1 self)
96 (otherwise (error "Non-invertible ring element: ~S" self)))))
97
98(defmethod universal-zerop ((self integer-ring))
99 (with-slots (value)
100 self
101 (zerop value)))
102
103(defmethod universal-gcd ((self integer-ring) (other integer-ring))
104 (with-slots (value)
105 self
106 (with-slots ((other-value value))
107 other
108 (make-instance 'integer-ring :value (gcd value other-value)))))
109
110
111(defmethod universal-ezgcd ((object integer-ring) (other integer-ring))
112 (with-slots (value)
113 object
114 (with-slots ((other-value value))
115 other
116 (let ((c (gcd value other-value)))
117 (values (make-instance 'integer-ring :value c)
118 (make-instance 'integer-ring :value (/ value c))
119 (make-instance 'integer-ring :value (/ other-value c)))))))
120
121(defmethod universal-equalp ((self integer-ring) (other integer-ring))
122 (with-slots (value)
123 self
124 (with-slots ((other-value value))
125 other
126 (= value other-value))))
127
128(defmethod ->sexp ((self integer-ring) &optional vars)
129 (declare (ignore vars))
130 (integer-ring-value self))
Note: See TracBrowser for help on using the repository browser.