next | previous | forward | backward | up | top | index | toc | home

debug -- open private dictionary of a package

Synopsis

Description

For example, the private dictionary for Macaulay 2 may be opened using
i1 : debug Core
This allows access to the low level ("raw") routines implemented by the Macaulay 2 engine, although this is mainly useful for debugging Macaulay 2 itself.
i2 : R = QQ[a..d];
i3 : raw R

o3 = QQ[a,b,c,d,
       Degrees => {1, 1, 1, 1},
       MonomialOrdering => {
         GRevLex => {1,1,1,1},
         Position => Up
         }
       ]

o3 : RawRing

Ways to use debug :