- Timestamp:
- 2015-09-05T16:13:04-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3537 r3538 498 498 (setf (term-coeff new) 1)) 499 499 500 (defmethod monom-multiply-by ((self term) (other term))500 (defmethod term-multiply-by ((self term) (other term)) 501 501 "Destructively multiply terms SELF and OTHER and store the result into SELF. 502 502 It returns SELF." 503 (setf ( scalar-coeff self) (multiply-by (scalar-coeff self) (scalar-coeff other))))503 (setf (term-coeff self) (universal-multiply-by (term-coeff self) (scalar-coeff other)))) 504 504 505 505 (defmethod monom-left-tensor-product-by ((self term) (other term))
Note:
See TracChangeset
for help on using the changeset viewer.