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.

Changeset 2275


Ignore:
Timestamp:
2015-06-18T14:11:51-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r2192 r2275  
    4040(defclass term (monom)
    4141  ((coeff :initarg :coeff :accessor term-coeff)))
     42
     43(defmethod print-object ((self term) stream)
     44  (format stream "#<TERM DIMENSION=~A EXPONENTS=~A COEFF=~A>"
     45          (slot-value self 'dimension)
     46          (slot-value self 'exponents)
     47          (slot-value self 'coeff)))
     48
    4249
    4350(defun make-term (&key
Note: See TracChangeset for help on using the changeset viewer.