Changeset 4105 for branches/f4grobner/polynomial.lisp
- Timestamp:
- 2016-06-01T12:41:13-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r4104 r4105 388 388 389 389 (defmethod add-to ((self poly) (other term)) 390 "Adds to a polynomial SELF a term OTHER." 390 "Adds to a polynomial SELF a term OTHER. The term OTHER is not 391 modified." 391 392 (add-to self (change-class (copy-instance other) 'poly))) 392 393 393 394 (defmethod subtract-from ((self poly) (other term)) 394 "Subtracts from a polynomial SELF a term OTHER." 395 "Subtracts from a polynomial SELF a term OTHER. The term OTHER is not 396 modified." 395 397 (subtract-from self (change-class (copy-instance other) 'poly))) 396 398
Note:
See TracChangeset
for help on using the changeset viewer.