next | previous | forward | backward | up | top | index | toc | Macaulay2 web site

integralClosure(..., Verbosity => ...) -- display a certain amount of detail about the computation

Synopsis

Description

When the computation takes a considerable time, this function can be used to decide if it will ever finish, or to get a feel for what is happening during the computation.
i1 : R = QQ[x,y,z]/ideal(x^8-z^6-y^2*z^4-z^3);
i2 : time R' = integralClosure(R, Verbosity => 2)
 [jacobian time 0 sec #minors 3]
integral closure nvars 3 numgens 1 is S2 codim 1 codimJ 2

 [step 0: 
      radical (use decompose) .009147 seconds
      idlizer1:  .009248 seconds
      idlizer2:  .009292 seconds
      minpres:   .049059 seconds
  time .095849 sec  #fractions 4]
 [step 1: 
      radical (use decompose) .009809 seconds
      idlizer1:  .009845 seconds
      idlizer2:  .019833 seconds
      minpres:   .009394 seconds
  time .076703 sec  #fractions 4]
 [step 2: 
      radical (use decompose) .009097 seconds
      idlizer1:  .009114 seconds
      idlizer2:  .088345 seconds
      minpres:   .009783 seconds
  time .126251 sec  #fractions 5]
 [step 3: 
      radical (use decompose) 0 seconds
      idlizer1:  .009909 seconds
      idlizer2:  .088345 seconds
      minpres:   .039638 seconds
  time .177425 sec  #fractions 5]
 [step 4: 
      radical (use decompose) 0 seconds
      idlizer1:  .069377 seconds
      idlizer2:  .108466 seconds
      minpres:   .019779 seconds
  time .275211 sec  #fractions 5]
 [step 5: 
      radical (use decompose) .009854 seconds
      idlizer1:  .009907 seconds
  time .019761 sec  #fractions 5]
     -- used 0.7712 seconds

o2 = R'

o2 : QuotientRing
i3 : trim ideal R'

                     3   2                     2 2    4           4         
o3 = ideal (w   z - x , w   x - w   , w   x - y z  - z  - z, w   x  - w   z,
             4,0         4,0     1,1   1,1                    4,0      1,1  
     ------------------------------------------------------------------------
                 2 2     2 3    2   3      2   3 2      4 2      2 4       2 
     w   w    - x y z - x z  - x , w    + w   x y  - x*y z  - x*y z  - 2x*y z
      4,0 1,1                       4,0    4,0                               
     ------------------------------------------------------------------------
          3           3    2      6 2    6 2
     - x*z  - x, w   x  - w    + x y  + x z )
                  4,0      1,1

o3 : Ideal of QQ[w   , w   , x, y, z]
                  4,0   1,1
i4 : icFractions R

       3   2 2    4
      x   y z  + z  + z
o4 = {--, -------------, x, y, z}
       z        x

o4 : List

Further information

Caveat

The exact information displayed may change.