Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 2551

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: 1125661120 *}

i1 : F = ZZ^3

       3
o1 = ZZ

o1 : ZZ-module, free

i2 : peek F

o2 = Module of Vector{cache => CacheTable{...2...}                     }
                      numgens => 3
                      RawFreeModule => free(rank 3 degrees = {1, 1, 1})
                      ring => ZZ

i3 : F.cache#Foo = Bar

o3 = Bar

o3 : Symbol

i4 : peek F

o4 = Module of Vector{cache => CacheTable{...3...}                     }
                      numgens => 3
                      RawFreeModule => free(rank 3 degrees = {1, 1, 1})
                      ring => ZZ

i5 : peek F.cache

o5 = CacheTable{degrees => {{}, {}, {}}}
                Foo => Bar
                rank => 3

i6 : F === ZZ^3

o6 = true

i7 :