close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 3434 for branches


Ignore:
Timestamp:
2015-08-27T18:12:04-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3433 r3434  
    325325  "Non-destructively subtract MINUEND and SUBTRAHENDS."
    326326  (subtract-from (change-class (copy-instance minuend) 'poly)
    327                  (reduce #'r+ subtrahends)))
     327                 (change-class (reduce #'r+ subtrahends) 'poly))
    328328
    329329(defmethod r+ ((poly1 monom) poly2)
     
    335335  "Non-destructively subtract MINUEND and SUBTRAHENDS."
    336336  (subtract-from (change-class (copy-instance minuend) 'poly)
    337                  (reduce #'r+ subtrahends)))
     337                 (change-class (reduce #'r+ subtrahends) 'poly)))
    338338
    339339(defmethod r* ((poly1 poly) (poly2 poly))
Note: See TracChangeset for help on using the changeset viewer.