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 3216


Ignore:
Timestamp:
2015-06-22T19:41:08-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3214 r3216  
    6363(defmethod print-object ((self monom) stream)
    6464  (print-unreadable-object (self stream :type t :identity t)
    65     (format stream "DIMENSION=~A EXPONENTS=~A"
    66             (monom-dimension self)
    67             (monom-exponents self))))
     65    (with-accessors ((dimension monom-dimension) (exponents monom-exponents))
     66        self
     67      (format stream "DIMENSION=~A EXPONENTS=~A"
     68              dimension exponents))))
     69
    6870
    6971(defmethod shared-initialize :after ((self monom) slot-names
Note: See TracChangeset for help on using the changeset viewer.