next | previous | forward | backward | up | top | index | toc | Macaulay2 website
GeometricDecomposability > Verbose

Verbose -- print additional output

Description

If true, prints intermediate steps taken. Otherwise, prints nothing.

i1 : R = QQ[x,y,z]

o1 = R

o1 : PolynomialRing
i2 : I = ideal(x-y, x-z)

o2 = ideal (x - y, x - z)

o2 : Ideal of R
i3 : isGVD I

o3 = true
i4 : isGVD(I, Verbose=>true)
ideal(x-y,x-z)
-- decomposing with respect to x
-- C = ideal(y-z,1)
-- N = ideal(y-z)
ideal(y-z,1)
-- unit ideal
ideal(y-z)
-- decomposing with respect to y
-- C = ideal 1
-- N = ideal()
ideal 1
-- unit ideal
ideal()
-- zero ideal

o4 = true

See also

Functions with optional argument named Verbose :

For the programmer

The object Verbose is a symbol.