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/term.lisp@ 3133

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

* empty log message *

File size: 5.0 KB
RevLine 
[1201]1;;; -*- Mode: Lisp -*-
[78]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
[397]22(defpackage "TERM"
[1605]23 (:use :cl :monom :ring)
[2845]24 (:export "TERM"
25 "MAKE-TERM-VARIABLE"
26 )
[2702]27 (:documentation "This package implements class TERM. A term is a
28product of a scalar and powers of some variables, such as
295*X^2*Y^3. The part of the term without the coefficient is a monomial
30X^2*Y^3, which is represented by class MONOM, provided by the :MONOM
31package. In this implementation, a TERM specializes MONOL. Also, a
32monomial can be considered a TERM whose coefficient is the unit
33element (1) of the underlying ring. The generic method CHANGE-CLASS
34can be used to convert between a MONOM and a TERM, observing this
[2703]35convention."))
[78]36
[420]37(in-package :term)
38
[1926]39(proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
40
[3132]41(defclass term (monom scalar)
[2698]42 (:default-initargs :dimension nil :exponents nil :coeff nil)
[2704]43 (:documentation "Implements a term, i.e. a product of a ring element
44and powers of some variables, such as 5*X^2*Y^3."))
[766]45
[2851]46(defmethod r-equalp ((term1 term) (term2 term))
[2854]47 (and (r-equalp (term-coeff term1) (term-coeff term2))
48 (call-next-method)))
[2722]49
[2275]50(defmethod print-object ((self term) stream)
[3133]51 (format stream "#<TERM DIMENSION=~A EXPONENTS=~A VALUE=~A>"
52 (monom-dimension self)
53 (monom-exponents self)
54 (scalar-value self)))
[2275]55
[2339]56(defmethod shared-initialize ((self term) slot-names
57 &rest
[2395]58 initargs
[2339]59 &key
[2377]60 coeff
61 &allow-other-keys)
[2395]62 (declare (ignore initargs))
[2385]63 (if (eq slot-names t) (setf slot-names '(coeff)))
[2378]64 (dolist (slot-name slot-names)
65 (case slot-name
66 (coeff
[2391]67 (setf (slot-value self 'coeff) coeff)))))
[2342]68
[2986]69(defmethod update-instance-for-different-class :around ((old monom) (new term) &key)
[2905]70 ;; Changing an instance of class MONOM to class TERM may also
71 ;; happen when OLD is an instance of TERM, in which case the
72 ;; value of the coefficient should be preserved.
[2897]73 (unless (slot-boundp new 'coeff)
[2982]74 (setf (term-coeff new) 1))
[2986]75 new)
[2377]76
[2288]77#|
[2189]78(defun make-term-variable (nvars pos
[2021]79 &optional
80 (power 1)
[2189]81 (coeff 1))
[400]82 "Construct a term in the polynomial ring RING[X[0],X[1],X[2],...X[NVARS-1]]
[399]83over the ring RING which represents a single variable. It assumes
84number of variables NVARS and the variable is at position
85POS. Optionally, the variable may appear raised to power POWER.
86Optionally, the term may appear with an arbitrary coefficient, which
87defaults to the unit of the RING."
[2189]88 (declare (type fixnum nvars pos))
[1959]89 (make-term :monom (make-monom-variable nvars pos power)
90 :coeff coeff))
[51]91
[2352]92|#
93
[2946]94(defmethod multiply-by :before ((self term) (other term))
[2833]95 "Destructively multiply terms SELF and OTHER and store the result into SELF.
[2805]96It returns SELF."
[2945]97 (setf (r-coeff self) (multiply-by (r-coeff self) (r-coeff other))))
[2477]98
[3031]99(defmethod left-tensor-product-by ((self term) (other term))
[3030]100 (setf (r-coeff self) (multiply-by (r-coeff self) (r-coeff other)))
[3031]101 (call-next-method))
[3027]102
[3038]103(defmethod right-tensor-product-by ((self term) (other term))
104 (setf (r-coeff self) (multiply-by (r-coeff self) (r-coeff other)))
105 (call-next-method))
106
[3059]107(defmethod left-tensor-product-by ((self term) (other monom))
108 (call-next-method))
109
110(defmethod right-tensor-product-by ((self term) (other monom))
111 (call-next-method))
112
[2832]113(defmethod divide-by ((self term) (other term))
[2833]114 "Destructively divide term SELF by OTHER and store the result into SELF.
[2832]115It returns SELF."
116 (setf (r-coeff self) (divide-by (r-coeff self) (r-coeff other)))
117 (call-next-method))
118
[2685]119(defmethod unary-minus ((self term))
120 (setf (term-coeff self) (unary-minus (term-coeff self)))
121 self)
122
[2938]123(defmethod r* ((term1 term) (term2 term))
124 "Non-destructively multiply TERM1 by TERM2."
[2967]125 (multiply-by (copy-instance term1) (copy-instance term2)))
[2938]126
[2942]127(defmethod r-zerop ((self term))
[2941]128 (r-zerop (term-coeff self)))
[2938]129
[2352]130#|
[1147]131
132(defun term->cons (term)
[1154]133 "A human-readable representation of a term as a cons (MONOM . COEFF)."
[1902]134 (declare (type term term))
[1147]135 (cons (monom->list (term-monom term)) (term-coeff term)))
136
[2288]137|#
Note: See TracBrowser for help on using the repository browser.