- Timestamp:
- 2015-09-08T12:04:44-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-symbolic-poly.lisp
r3726 r3730 39 39 40 40 (require :utils "utils") 41 (require :copy "copy") 41 42 (require :monom "monom") 42 43 (require :polynomial "polynomial") … … 65 66 (p-symbolic (make-instance 'symbolic-poly :vars '(x)))) 66 67 (dolist (x '( ((2) . 22) ((4) . 44) ((5) . 55) ((8) . 88) ((9) . 99) )) 67 ( insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x)))68 ( insert-item p-symbolic (make-instance 'term :exponents (car x) :coeff (cdr x))))68 (poly-insert-term p (make-instance 'term :exponents (car x) :coeff (cdr x))) 69 (poly-insert-term p-symbolic (make-instance 'term :exponents (car x) :coeff (cdr x)))) 69 70 (&body))) 70 71
Note:
See TracChangeset
for help on using the changeset viewer.