source: git/Tst/Short/betti_s.tst @ 564136

spielwiese
Last change on this file since 564136 was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 894 bytes
Line 
1LIB "tst.lib";
2tst_init();
3tst_ignore("CVS ID $Id$");
4ring an=32003,(w,x,y,z),(dp,C);
5ideal i=
60,
70,
81w2xy+1w2xz+1w2yz+1wxyz+1x2yz+1xy2z+1xyz2,
91w4x+1w4z+1w3yz+1w2xyz+1wx2yz+1x2y2z+1xy2z2,
101w6+1w5z+1w4xz+1w3xyz+1w2xy2z+1wx2y2z+1x2y2z2;
11resolution rs=nres(i,0);
12print(betti(rs),"betti");
13print(betti(rs,0),"betti");
14kill basering;
15ring an=32003,(w,x,y,z),(dp,c);
16ideal i=
17wx2+y3,
18xy2+z3,
190,
200,
21yz2+w3,
22zw2+x3,
23xyz+yzw+zwx+wxy;
24resolution rs=nres(i,0);
25print(betti(rs),"betti");
26print(betti(rs,0),"betti");
27kill basering;
28ring an=32003,(w,x,y,z),(dp,c);
29ideal i=
30wx+y2,
310,
320,
33xy+z2,
34yz+w2,
35zw+x2,
36xy+yz+zw+wx;
37resolution rs=nres(i,0);
38print(betti(rs),"betti");
39print(betti(rs,0),"betti");
40kill basering;
41ring an=32003,(x,y,z),(dp,c);
42ideal i=
43zx2+y3,
44xy2+z3,
450,
460,
47yz2+x3,
48x2y+y2z+z2x;
49resolution rs=nres(i,0);
50print(betti(rs),"betti");
51print(betti(rs,0),"betti");
52kill basering;
53tst_status(1);$
Note: See TracBrowser for help on using the repository browser.