Changeset 4333 for branches/f4grobner/polynomial.lisp
- Timestamp:
- 2016-06-05T20:43:45-07:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r4332 r4333 206 206 (:documentation "Multiply vector SELF by a scalar OTHER.") 207 207 (:method ((self poly) other) 208 (mapc #'(lambda (term) (setf (term-coeff term) (multiply (term-coeff term) other)))208 (mapc #'(lambda (term) (setf (term-coeff term) (multiply-by (term-coeff term) other))) 209 209 (poly-termlist self)) 210 210 self)) … … 213 213 (:documentation "Divide vector SELF by a scalar OTHER.") 214 214 (:method ((self poly) other) 215 (mapc #'(lambda (term) (setf (term-coeff term) (divide (term-coeff term) other)))215 (mapc #'(lambda (term) (setf (term-coeff term) (divide-by (term-coeff term) other))) 216 216 (poly-termlist self)) 217 217 self))
Note:
See TracChangeset
for help on using the changeset viewer.