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 3313


Ignore:
Timestamp:
2015-06-23T09:45:47-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r3312 r3313  
    6262(defmethod print-object ((self monom) stream)
    6363  (print-unreadable-object (self stream :type t :identity t)
    64     (with-accessors ((dimension monom-dimension) (exponents monom-exponents))
     64    (with-accessors ((exponents monom-exponents))
    6565        self
    66       (format stream "DIMENSION=~A EXPONENTS=~A"
    67               dimension exponents))))
     66      (format stream "EXPONENTS=~A"
     67              exponents))))
    6868
    6969;; The following INITIALIZE-INSTANCE method allows instance
Note: See TracChangeset for help on using the changeset viewer.