- Timestamp:
- 2016-06-04T13:24:58-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r4193 r4214 374 374 (fast-add/subtract p q order-fn #'subtract-from #'unary-minus)) 375 375 376 (defmethod add-to ((self poly) (other poly)) 376 (defmethod add-to ((self poly) (other poly) 377 &aux (other (copy-instance other))) 377 378 "Adds to polynomial SELF another polynomial OTHER. 378 379 This operation destructively modifies both polynomials. … … 386 387 387 388 388 (defmethod subtract-from ((self poly) (other poly)) 389 (defmethod subtract-from ((self poly) (other poly) 390 &aux (other (copy-instance other)))) 389 391 "Subtracts from polynomial SELF another polynomial OTHER. 390 392 This operation destructively modifies both polynomials.
Note:
See TracChangeset
for help on using the changeset viewer.