Changeset 3134 for branches/f4grobner/term.lisp
- Timestamp:
- 2015-06-22T11:11:12-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r3133 r3134 43 43 (:documentation "Implements a term, i.e. a product of a ring element 44 44 and powers of some variables, such as 5*X^2*Y^3.")) 45 46 (defmethod r-equalp ((term1 term) (term2 term))47 (and (r-equalp (term-coeff term1) (term-coeff term2))48 (call-next-method)))49 45 50 46 (defmethod print-object ((self term) stream)
Note:
See TracChangeset
for help on using the changeset viewer.