- Timestamp:
- 2016-05-29T19:46:04-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3907 r3908 286 286 287 287 #| 288 288 289 (defmacro def-add/subtract-method (add/subtract-method-name 289 290 uminus-method-name … … 301 302 ,(when uminus-method-name `(function ,uminus-method-name)))) 302 303 self)) 304 305 (eval-when (:load-toplevel :execute) 306 307 (def-add/subtract-method add-to nil 308 "Adds to polynomial SELF another polynomial OTHER. 309 This operation destructively modifies both polynomials. 310 The result is stored in SELF. This implementation does 311 no consing, entirely reusing the sells of SELF and OTHER.") 312 313 (def-add/subtract-method subtract-from unary-minus 314 "Subtracts from polynomial SELF another polynomial OTHER. 315 This operation destructively modifies both polynomials. 316 The result is stored in SELF. This implementation does 317 no consing, entirely reusing the sells of SELF and OTHER.") 318 ) 319 303 320 |# 304 321
Note:
See TracChangeset
for help on using the changeset viewer.