First time here? Check out the FAQ!

Ask Your Question
0

what is "set_verbose"command in buchberger algorithm?

asked 12 years ago

Neda gravatar image

updated 12 years ago

fidbc gravatar image

Hello I computed buchberger algorithm as

R.<x,y,z>=PolynomialRing(QQ,3)
I=ideal(x^6-y^2+z, z^3+y^2)
set_verbose(3)
I.groebner_basis('toy:buchberger')
(x^6 - y^2 + z, z^3 + y^2) => 0
G: set([x^6 - y^2 + z, z^3 + y^2])

(z^3 + y^2, x^6 - y^2 + z) => 0
G: set([x^6 - y^2 + z, z^3 + y^2])

2 reductions to zero.

[x^6 - y^2 + z, z^3 + y^2]

I just want to know what is set_verbose(3) command for in this? also toy: ... thank you

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 12 years ago

fidbc gravatar image

As the name suggests set_verbose is used to change the verbosity level. Try running the code without using the call set_verbose(3) to see the difference in the output.

Related link: set_verbose.

For your second question, you can check the manual.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 435 times

Last updated: Apr 05 '13