Changeset 2726 for branches/f4grobner/polynomial.lisp
- Timestamp:
- 2015-06-20T17:34:26-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2716 r2726 153 153 self)) 154 154 155 (def-additive-operation-method add-to 156 "Adds to polynomial SELF another polynomial OTHER. 155 (eval-when (:compile-toplevel :load-toplevel :execute) 156 (def-additive-operation-method add-to 157 "Adds to polynomial SELF another polynomial OTHER. 157 158 This operation destructively modifies both polynomials. 158 159 The result is stored in SELF. This implementation does 159 160 no consing, entirely reusing the sells of SELF and OTHER.") 160 161 161 (def-additive-operation-method subtract-from162 "Subtracts from polynomial SELF another polynomial OTHER.162 (def-additive-operation-method subtract-from 163 "Subtracts from polynomial SELF another polynomial OTHER. 163 164 This operation destructively modifies both polynomials. 164 165 The result is stored in SELF. This implementation does 165 166 no consing, entirely reusing the sells of SELF and OTHER.") 167 ) 166 168 167 169 (defmethod unary-minus ((self poly))
Note:
See TracChangeset
for help on using the changeset viewer.