Changeset 3093 for branches/f4grobner
- Timestamp:
- 2015-06-21T23:24:08-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/polynomial.lisp
r3092 r3093 56 56 57 57 (defun alist->poly (alist &aux (make-instance 'poly)) 58 "Read a polynomial from an alist formatted as ( ... (exponents . coeff) ...). 59 Returns an object of clas POLY." 58 "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...)." 60 59 (dolist (x alist) 61 60 (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x))))
Note:
See TracChangeset
for help on using the changeset viewer.