Changeset 974 for branches/f4grobner
- Timestamp:
- 2015-06-09T20:36:18-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r973 r974 182 182 plist (mapcar #'(lambda (x) 183 183 (setf (poly-termlist x) (nconc (poly-termlist x) 184 (list (make-term (make-monom d)184 (list (make-term (make-monom :dimension d) 185 185 (funcall (ring-uminus ring) (funcall (ring-unit ring))))))) 186 186 x) … … 194 194 (setf f (poly-list-add-variables f k) 195 195 plist (apply #'poly-append (poly-standard-extension plist)) 196 (cdr (last (poly-termlist plist))) (list (make-term (make-monom d)196 (cdr (last (poly-termlist plist))) (list (make-term (make-monom :dimension d) 197 197 (funcall (ring-uminus ring) (funcall (ring-unit ring)))))) 198 198 (append f (list plist)))
Note:
See TracChangeset
for help on using the changeset viewer.