| LIB "realizationMatroids.lib";
ring r = 0,(x(1..4)),dp;
ideal I = x(1)+x(2)+x(3)+x(4);
list C = list(intvec(2,2,0,0),intvec(0,0,2,1),intvec(0,0,0,1));
//C represents the tropical fan curve which consists of the cones
//cone([(1,1,0,0)]) (with weight 2), cone([(0,0,2,1)]) (with weight 1)
//and cone([(0,0,0,1)]) (with weight 1)
realizationDim(I,C);
==> -1
|