Changeset 2489 for branches/f4grobner/term.lisp
- Timestamp:
- 2015-06-19T11:15:07-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/term.lisp
r2481 r2489 94 94 self) 95 95 96 (defmethod multiply-by ((self term) other) 97 "Returns the product of the terms TERM1 and TERM2, 98 or NIL when the product is 0. This definition takes care of divisors of 0 99 in the coefficient ring." 100 (setf (r-coeff self) (multiply-by (r-coeff self) other)) 101 self) 102 96 103 #| 97 104
Note:
See TracChangeset
for help on using the changeset viewer.