- Timestamp:
- 2016-05-28T01:57:56-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/monom.lisp
r3828 r3829 565 565 (universal-equalp (term-coeff term1) (term-coeff term2)))) 566 566 567 (defmethod update-instance-for-different-class :after ((old monom) (new term) &key)568 (setf (term-coeff new) 1))569 570 567 (defmethod multiply-by :before ((self term) (other term)) 571 568 "Destructively multiply terms SELF and OTHER and store the result into SELF. … … 616 613 (with-slots (exponents coeff) 617 614 self 618 ( cons'* coeff615 (list* '* coeff 619 616 (mapcan #'(lambda (var power) 620 617 (cond ((= power 0) nil)
Note:
See TracChangeset
for help on using the changeset viewer.