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 3196


Ignore:
Timestamp:
2015-06-22T18:38:34-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3054 r3196  
    6262
    6363(defmethod print-object ((self monom) stream)
    64   (format stream "#<MONOM DIMENSION=~A EXPONENTS=~A>"
    65           (monom-dimension self)
    66           (monom-exponents self)))
     64  (print-unreadable-object (self stream :type t :identity t)
     65    (format stream "DIMENSION=~A EXPONENTS=~A"
     66            (monom-dimension self)
     67            (monom-exponents self))))
    6768
    6869(defmethod shared-initialize :after ((self monom) slot-names
Note: See TracChangeset for help on using the changeset viewer.