close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/test5.lisp@ 4557

Last change on this file since 4557 was 4484, checked in by Marek Rychlik, 8 years ago
File size: 1.1 KB
RevLine 
[4392]1
[4391]2;;poly_grobner([x^3-x^2+2,y-2*x^2+1,z-3*x+5],[x,y,z]);
3;;[x^3-x^2+2,y-2*x^2+1,z-3*x+5,2*z^2+20*z-9*y+41,(-z^3)-12*z^2-45*z-104]
4
5(in-package :5am-buchberger)
[4484]6(proclaim '(special fl ref-gb sp sp-rem gb))
[4391]7
[4392]8(setf grobner-debug::$poly_grobner_debug nil)
[4391]9
10(setf fl (cdr (string->poly "[x^3-x^2+2,y-2*x^2+1,z-3*x+5]" '(x y z)))
11 ref-gb (cdr (string->poly "[x^3-x^2+2,y-2*x^2+1,z-3*x+5,2*z^2+20*z-9*y+41,(-z^3)-12*z^2-45*z-104]" '(x y z))))
12
[4392]13(format t "~%")
[4434]14(format t "FL --> ~A~2%" (poly->string (cons :[ fl)))
15(format t "REF-GB --> ~A~2%" (poly->string (cons :[ ref-gb)))
[4391]16
[4392]17(loop for i from 0 below (length fl)
18 do
19 (loop for j from (1+ i) below (length fl)
20 do
21 (setf sp (s-polynomial (elt fl i) (elt fl j)))
[4434]22 (format t "SPOLY(~A,~A) --> ~A~2%"
[4393]23 (poly->string (elt fl i))
24 (poly->string (elt fl j))
25 (poly->string sp))
[4392]26 (setf sp-rem (normal-form sp fl))
[4434]27 (format t "NORMAL-FORM(~A,~A) --> ~A~2%"
[4401]28 (poly->string sp)
[4394]29 (poly->string (cons :[ fl))
30 (poly->string sp-rem))
[4392]31 )
32)
[4391]33
34
35;;(setf gb (buchberger fl))
[4484]36;;(print (mapcar #'->sexp gb))
Note: See TracBrowser for help on using the repository browser.