- Timestamp:
- 2016-06-04T13:27:49-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r4215 r4216 403 403 (add-to self (change-class other-copy 'poly))) 404 404 405 (defmethod subtract-from ((self poly) (other term) )405 (defmethod subtract-from ((self poly) (other term) &aux (other-copy (copy-instance other))) 406 406 "Subtracts from a polynomial SELF a term OTHER. The term OTHER is not 407 407 modified." 408 (subtract-from self (change-class (copy-instance other)'poly)))408 (subtract-from self (change-class other-copy 'poly))) 409 409 410 410
Note:
See TracChangeset
for help on using the changeset viewer.