Changeset 1829 for branches/f4grobner/termlist.lisp
- Timestamp:
- 2015-06-15T14:04:42-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/termlist.lisp
r1639 r1829 52 52 (defun termlist-contract (p &optional (k 1)) 53 53 "Eliminate first K variables from a polynomial P." 54 (mapcar #'(lambda (term) (make-term (monom-contract (term-monom term) k)55 (term-coeff term)))54 (mapcar #'(lambda (term) (make-term :monom (monom-contract (term-monom term) k) 55 :coeff (term-coeff term))) 56 56 p)) 57 57
Note:
See TracChangeset
for help on using the changeset viewer.