Changeset 3160 for branches/f4grobner
- Timestamp:
- 2015-06-22T12:22:00-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r3159 r3160 46 46 47 47 (defmethod print-object ((self term) stream) 48 (format stream "#<TERM DIMENSION=~A EXPONENTS=~A COEFF=~A>" 49 (monom-dimension self) 50 (monom-exponents self) 51 (scalar-coeff self))) 48 (with-slots (dimension exponents coeff) 49 self 50 (format stream "#<TERM DIMENSION=~A EXPONENTS=~A COEFF=~A>" 51 dimension 52 exponents 53 coeff)) 54 self) 55 52 56 53 57 (defmethod r-equalp ((term1 term) (term2 term))
Note:
See TracChangeset
for help on using the changeset viewer.