- Timestamp:
- 2015-09-05T11:58:44-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3518 r3519 165 165 166 166 (defgeneric poly-multiply-by (self other) 167 (:documentation "Multiply a polynomial SELF by OTHER.") 167 168 (: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))) 169 171 (poly-termlist self)) 170 172 self))
Note:
See TracChangeset
for help on using the changeset viewer.