Changeset 4091 for branches/f4grobner
- Timestamp:
- 2016-06-01T10:12:00-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r4090 r4091 566 566 567 567 (defmethod multiply-by ((self term) (other number)) 568 (reinitialize-instance self :coeff (multiply (term-coeff self) other)))568 (reinitialize-instance self :coeff (multiply-by (term-coeff self) other))) 569 569 570 570 (defmethod divide-by ((self term) (other number)) 571 (reinitialize-instance self :coeff (divide (term-coeff self) other)))571 (reinitialize-instance self :coeff (divide-by (term-coeff self) other))) 572 572 573 573 (defmethod unary-inverse :after ((self term))
Note:
See TracChangeset
for help on using the changeset viewer.