- Timestamp:
- 2015-09-05T16:13:30-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3538 r3539 503 503 (setf (term-coeff self) (universal-multiply-by (term-coeff self) (scalar-coeff other)))) 504 504 505 (defmethod monom-left-tensor-product-by ((self term) (other term))506 (setf (term-coeff self) ( multiply-by (term-coeff self) (term-coeff other)))505 (defmethod term-left-tensor-product-by ((self term) (other term)) 506 (setf (term-coeff self) (universal-multiply-by (term-coeff self) (term-coeff other))) 507 507 (call-next-method)) 508 508
Note:
See TracChangeset
for help on using the changeset viewer.