Changeset 3877
- Timestamp:
- 2016-05-28T20:50:44-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3869 r3877 127 127 (poly-insert-term poly (make-instance 'term :exponents (car x) :coeff (cdr x))))) 128 128 129 (defmethod update-instance-for-different-class : before((old term) (new poly) &key)129 (defmethod update-instance-for-different-class :after ((old term) (new poly) &key) 130 130 "Converts OLD of class TERM to a NEW of class POLY, by making it into a 1-element TERMLIST." 131 131 (reinitialize-instance new … … 133 133 :termlist (list old))) 134 134 135 (defmethod update-instance-for-different-class : before((old monom) (new poly) &key)135 (defmethod update-instance-for-different-class :after ((old monom) (new poly) &key) 136 136 "Converts OLD of class MONOM to a NEW of class POLY, by making it into a 1-element TERMLIST." 137 137 (reinitialize-instance new
Note:
See TracChangeset
for help on using the changeset viewer.