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 3215


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r3212 r3215  
    4747(defmethod print-object ((self term) stream)
    4848  (print-unreadable-object (self stream :type t :identity t)
    49     (format stream "DIMENSION=~A EXPONENTS=~A COEFF=~A"
    50             (monom-dimension self)
    51             (monom-exponents self)
    52             (scalar-coeff self))))
     49    (with-accessors ((dimension monom-dimension)
     50                     (exponents monom-exponents)
     51                     (coeff scalar-coeff))
     52        self
     53      (format stream "DIMENSION=~A EXPONENTS=~A COEFF=~A"
     54              dimension exponents coeff))))
    5355
    5456
Note: See TracChangeset for help on using the changeset viewer.