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 3519


Ignore:
Timestamp:
2015-09-05T11:58:44-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3518 r3519  
    165165
    166166(defgeneric poly-multiply-by (self other)
     167  (:documentation "Multiply a polynomial SELF by OTHER.")
    167168  (:method ((self poly) (other monom))
    168     (mapc #'(lambda (term) (monom-multiply-by term other))
     169    "Multiply a polynomial SELF by monomial OTHER"
     170    (mapc #'(lambda (term) (cons (monom-multiply-by (car term) other) (cdr other)))
    169171          (poly-termlist self))
    170172    self))
Note: See TracChangeset for help on using the changeset viewer.