- Timestamp:
- 2015-06-12T16:12:36-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-tests.lisp
r1571 r1572 389 389 "Ideal saturation with 1 polynomial" 390 390 (let* (($poly_grobner_algorithm :buchberger) 391 (F (cdr (string->poly "[x^3 ,x^2*y]" '(x y))))392 (p (string->poly "x" '(x y )))391 (F (cdr (string->poly "[x^3*z,x^2*y]" '(x y z)))) 392 (p (string->poly "x" '(x y z))) 393 393 (ring *ring-of-integers*) 394 394 (order #'lex>) … … 406 406 (ring *ring-of-integers*) 407 407 (ring-and-order (make-ring-and-order :ring ring :order order))) 408 ( reduced-grobner ring-and-order F)))408 (mapcar #'poly-contract (grobner ring-and-order F)))) 409 409 410 410
Note:
See TracChangeset
for help on using the changeset viewer.