- Timestamp:
- 2015-06-23T09:45:47-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3312 r3313 62 62 (defmethod print-object ((self monom) stream) 63 63 (print-unreadable-object (self stream :type t :identity t) 64 (with-accessors (( dimension monom-dimension) (exponents monom-exponents))64 (with-accessors ((exponents monom-exponents)) 65 65 self 66 (format stream " DIMENSION=~AEXPONENTS=~A"67 dimensionexponents))))66 (format stream "EXPONENTS=~A" 67 exponents)))) 68 68 69 69 ;; The following INITIALIZE-INSTANCE method allows instance
Note:
See TracChangeset
for help on using the changeset viewer.