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.
Last change
on this file since 4392 was 4392, checked in by Marek Rychlik, 9 years ago |
* empty log message *
|
File size:
1015 bytes
|
Rev | Line | |
---|
[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)
|
---|
[4392] | 6 | (proclaim '(special fl ref-gb sp sp-rem))
|
---|
[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 "~%")
|
---|
| 14 | (format t "FL --> ~A~%" (poly->string (cons :[ fl)))
|
---|
| 15 | (format t "REF-GB --> ~A~%" (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)))
|
---|
| 22 | (format t "SPOLY(~A,~A) --> ~A~%" (poly->string (elt fl i)) (poly->string (elt fl j)) (poly->string sp))
|
---|
| 23 | (setf sp-rem (normal-form sp fl))
|
---|
| 24 | (format t "NORMAL-FORM(~A,~A) --> ~A~%" (poly->string sp-rem) (poly->string (cons :[ fl)) (poly->string sp-rem))
|
---|
| 25 | )
|
---|
| 26 | )
|
---|
[4391] | 27 |
|
---|
| 28 |
|
---|
| 29 | ;;(setf gb (buchberger fl))
|
---|
Note:
See
TracBrowser
for help on using the repository browser.
Download in other formats: