Changeset 3425
- Timestamp:
 - 2015-08-27T17:31:17-07:00 (10 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  branches/f4grobner/polynomial.lisp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
branches/f4grobner/polynomial.lisp
r3408 r3425 331 331 (change-class (copy-instance POLY2) 'poly))) 332 332 333 (defmethod r- (( poly1 monom) poly2)334 "Non-destructively subtract POLY1 and POLY2."333 (defmethod r- ((minuend monom) &rest subtrahends) 334 "Non-destructively subtract MINUEND and SUBTRAHENDS." 335 335 (subtract-from (change-class (copy-instance POLY1) 'poly) 336 ( change-class (copy-instance POLY2) 'poly)))336 (apply #'r+ subtrahends))) 337 337 338 338 (defmethod r* ((poly1 poly) (poly2 poly))  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  