- Timestamp:
- 2015-08-27T17:34:00-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3427 r3428 323 323 (defmethod r- ((minuend term) &rest subtrahends) 324 324 "Non-destructively subtract MINUEND and SUBTRAHENDS." 325 (subtract-from (change-class (copy-instance POLY1) 'poly)325 (subtract-from (change-class (copy-instance minuend) 'poly) 326 326 (reduce #'r+ subtrahends))) 327 327 … … 333 333 (defmethod r- ((minuend monom) &rest subtrahends) 334 334 "Non-destructively subtract MINUEND and SUBTRAHENDS." 335 (subtract-from (change-class (copy-instance POLY1) 'poly)335 (subtract-from (change-class (copy-instance minuend) 'poly) 336 336 (reduce #'r+ subtrahends))) 337 337
Note:
See TracChangeset
for help on using the changeset viewer.