- Timestamp:
- 2015-06-20T20:12:33-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2776 r2777 169 169 self)) 170 170 171 (def-add/subtract-method add-to nil 172 "Adds to polynomial SELF another polynomial OTHER. 171 (eval-when (:compile-toplevel :load-toplevel :execute) 172 173 (def-add/subtract-method add-to nil 174 "Adds to polynomial SELF another polynomial OTHER. 173 175 This operation destructively modifies both polynomials. 174 176 The result is stored in SELF. This implementation does 175 177 no consing, entirely reusing the sells of SELF and OTHER.") 176 178 177 (def-add/subtract-method subtract-from unary-minus179 (def-add/subtract-method subtract-from unary-minus 178 180 "Subtracts from polynomial SELF another polynomial OTHER. 179 181 This operation destructively modifies both polynomials. 180 182 The result is stored in SELF. This implementation does 181 183 no consing, entirely reusing the sells of SELF and OTHER.") 184 185 ) 182 186 183 187 (defmethod unary-minus ((self poly))
Note:
See TracChangeset
for help on using the changeset viewer.