- Timestamp:
- 2015-06-19T11:29:42-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r2500 r2501 100 100 101 101 (defmethod multiply-by ((self poly) (other monom)) 102 (mapc #'(lambda (term) (multiply-by term other)) (poly-termlist self)) 102 (mapc #'(lambda (term) (multiply-by term other)) 103 (poly-termlist self)) 103 104 self) 104 105 105 (defmethod multiply-by ((self poly) other) 106 (mapc #'(lambda (term) (multiply-by term other)) (poly-termlist self)) 106 (defmethod multiply-by ((self poly) (other scalar)) 107 (mapc #'(lambda (term) (multiply-by term other)) 108 (poly-termlist self)) 107 109 self) 108 110
Note:
See TracChangeset
for help on using the changeset viewer.