Changeset 2621 for branches/f4grobner
- Timestamp:
- 2015-06-20T02:22:03-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-monom.lisp
r2620 r2621 179 179 (let ((p (make-instance 'poly)) 180 180 (q (make-instance 'poly :order #'grlex>))) 181 (dolist (x '( ((5) . 55) ((4) . 44) ((2) . 22)))181 (dolist (x '( ((5) . 55) ((4) . 44) ((2) . 22) )) 182 182 (insert-item p (make-instance 'term :exponents (list (car x)) :coeff (cdr x)))) 183 (dolist (x '( ((7) . 77) ((4) . -44) ((3) . 33) ((0) . 11)))183 (dolist (x '( ((7) . 77) ((4) . -44) ((3) . 33) ((0) . 11) )) 184 184 (insert-item q (make-instance 'term :exponents (list (car x)) :coeff (cdr x)))) 185 186 185 (&body))) 187 186
Note:
See TracChangeset
for help on using the changeset viewer.