Changeset 2678 for branches/f4grobner
- Timestamp:
- 2015-06-20T16:05:28-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-poly.lisp
r2677 r2678 66 66 (p-q (make-instance 'poly))) 67 67 ;; Populate the polynomials; the lists of (exponents . coefficient) pairs 68 ;; must be in increasing order. 68 ;; must be in increasing order in Q, but Q is unordered (:ORDER NIL) 69 ;; so it will be automatically sorted. 69 70 (dolist (x '( ((2) . 22) ((4) . 44) ((5) . 55) ((8) . 88) ((9) . 99) )) 70 71 (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x))))
Note:
See TracChangeset
for help on using the changeset viewer.