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 3120


Ignore:
Timestamp:
2015-06-22T08:24:29-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3119 r3120  
    113113
    114114(defmethod multiply-by ((self poly) (other monom))
     115  (mapc #'(lambda (term) (multiply-by term other))
     116        (poly-termlist self))
     117  self)
     118
     119(defmethod multiply-by ((self poly) (other term))
    115120  (mapc #'(lambda (term) (multiply-by term other))
    116121        (poly-termlist self))
Note: See TracChangeset for help on using the changeset viewer.