- Timestamp:
- 2015-06-21T23:35:59-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3096 r3099 26 26 "POLY-TERM-ORDER" 27 27 "CHANGE-TERM-ORDER" 28 "STANDARD-EXTENSION" 28 29 "SATURATION-EXTENSION" 29 30 "ALIST->POLY") … … 58 59 (defun alist->poly (alist &aux (poly (make-instance 'poly))) 59 60 "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...)." 60 (dolist (x alist )61 (dolist (x alist poly) 61 62 (insert-item poly (make-instance 'term :exponents (car x) :coeff (cdr x))))) 62 63
Note:
See TracChangeset
for help on using the changeset viewer.