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 4071


Ignore:
Timestamp:
2016-05-31T19:30:32-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r4068 r4071  
    233233        (poly-termlist self))
    234234  self)
     235
     236(defmethod multiply-by ((self monom) (other poly))
     237  "Multiply a monomial SELF by polynomial OTHER."
     238  (multiply-by other self))
     239
     240(defmethod multiply-by ((self term) (other poly))
     241  "Multiply a term SELF by polynomial OTHER."
     242  (multiply-by other self))
    235243
    236244(defmacro fast-add/subtract (p q order-fn add/subtract-fn uminus-fn)
Note: See TracChangeset for help on using the changeset viewer.