i1 : R = QQ[x,y,z];
|
i2 : vx = newSimplexCell({},x);
|
i3 : vy = newSimplexCell({},y);
|
i4 : vz = newSimplexCell({},z);
|
i5 : exy = newSimplexCell {vx,vy};
|
i6 : C = cellComplex(R,{exy,vz});
|
i7 : cells(0,C)
o7 = {Cell of dimension 0 with label x, Cell of dimension 0 with label z,
------------------------------------------------------------------------
Cell of dimension 0 with label y}
o7 : List
|
i8 : cells(1,C)
o8 = {Cell of dimension 1 with label x*y}
o8 : List
|
i9 : cells(2,C)
o9 = {}
o9 : List
|