source: git/Tst/Short/hres_s.tst @ b7d0a9c

spielwiese
Last change on this file since b7d0a9c was ef52d6, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Update testsuite wrt current master (320c4f5e64cad778b4ada9556a9b0a6c71cab83a) NOTE: some wrong/bad tests were removed... TODO: add the reset of these updates after updating LIB/
  • Property mode set to 100644
File size: 1.1 KB
Line 
1LIB "tst.lib";
2tst_init();
3ring an=0,(w,x,y,z),(dp,C);
4ideal i=
51w2xy+1w2xz+1w2yz+1wxyz+1x2yz+1xy2z+1xyz2,
61w4x+1w4z+1w3yz+1w2xyz+1wx2yz+1x2y2z+1xy2z2,
71w6+1w5z+1w4xz+1w3xyz+1w2xy2z+1wx2y2z+1x2y2z2;
8resolution rs=hres(i,0);
9betti(rs);
10list I=rs;
11betti(I);
12minres(rs);
13list J=rs;
14betti(J);
15kill an;
16ring an=0,(w,x,y,z),(dp,c);
17ideal i=
18wx2+y3,
19xy2+z3,
20yz2+w3,
21zw2+x3,
22xyz+yzw+zwx+wxy;
23resolution rs=hres(i,0);
24betti(rs);
25list I=rs;
26betti(I);
27minres(rs);
28list J=rs;
29betti(J);
30kill an;
31ring an=0,(w,x,y,z),(dp,c);
32ideal i=
33wx+y2,
34xy+z2,
35yz+w2,
36zw+x2,
37xy+yz+zw+wx;
38resolution rs=hres(i,0);
39betti(rs);
40list I=rs;
41betti(I);
42minres(rs);
43list J=rs;
44betti(J);
45kill an;
46ring an=0,(x,y,z),(dp,c);
47ideal i=
48zx2+y3,
49xy2+z3,
50yz2+x3,
51x2y+y2z+z2x;
52resolution rs=hres(i,0);
53betti(rs);
54list I=rs;
55betti(I);
56minres(rs);
57list J=rs;
58betti(J);
59kill an;
60ring cyc5 = 32003,(a,b,c,d,e,f),dp;
61ideal i=
62a+b+c+d+e,
63de+1cd+1bc+1ae+1ab,
64cde+1bcd+1ade+1abe+1abc,
65bcde+1acde+1abde+1abce+1abcd,
66abcde-f5;
67resolution rs=hres(i,0);
68betti(rs);
69list I=rs;
70betti(I);
71minres(rs);
72list J=rs;
73betti(J);
74kill cyc5;
75tst_status(1);$
Note: See TracBrowser for help on using the repository browser.