- Timestamp:
- 2015-06-22T19:39:16-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r3212 r3215 47 47 (defmethod print-object ((self term) stream) 48 48 (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)))) 53 55 54 56
Note:
See TracChangeset
for help on using the changeset viewer.