Changeset 1452 for branches/f4grobner
- Timestamp:
- 2015-06-12T11:01:20-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/5am-tests.lisp
r1451 r1452 329 329 (let* (($poly_grobner_algorithm :buchberger) 330 330 (f (string->poly "x^2-y^2" '(x y))) 331 (g (string->poly "x^2+2*x y+y^2" '(x y)))331 (g (string->poly "x^2+2*x*y+y^2" '(x y))) 332 332 (ring *ring-of-integers*) 333 333 (order #'lex>) … … 336 336 (is (poly-equal-no-sugar-p (poly-lcm ring-and-order f g) lcm-f-and-g)))) 337 337 338 (defun foo () 339 (let* (($poly_grobner_algorithm :buchberger) 340 (f (string->poly "x^2-y^2" '(x y))) 341 (g (string->poly "x^2+2*x*y+y^2" '(x y))) 342 (ring *ring-of-integers*) 343 (order #'lex>) 344 (ring-and-order (make-ring-and-order :ring ring :order order))) 345 (poly-lcm ring-and-order f g))) 346 338 347 339 348 (run! 'ngrobner-suite)
Note:
See TracChangeset
for help on using the changeset viewer.