Macaulay2 » Documentation
Packages » Macaulay2Doc > The Macaulay2 language > packages > debug
next | previous | forward | backward | up | index | toc

debug -- open the private dictionary of a package

Synopsis

Description

For example, the private dictionary for Macaulay2 may be opened using

i1 : debug Core

This allows access to the low level ("raw") routines implemented by the Macaulay2 engine, although this is mainly useful for debugging Macaulay2 itself.

i2 : R = QQ[a..d];
i3 : raw R

o3 = QQGMP[a,b,c,d,
       DegreeLength => 1,
       Degrees => {1, 1, 1, 1},
       Heft => {1},
       MonomialOrder => {
         GRevLex => {1,1,1,1},
         Position => Up
         }
       ]

o3 : RawRing

See also

Ways to use debug :

For the programmer

The object debug is a method function.