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