source: git/Tst/Long/mre_nonhom.tst @ ad3dfe

spielwiese
Last change on this file since ad3dfe was 6fe3a0, checked in by Hans Schönemann <hannes@…>, 19 years ago
*hannes/lossen: new libs, new tests git-svn-id: file:///usr/local/Singular/svn/trunk@7891 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 776 bytes
Line 
1LIB "tst.lib";
2tst_init();
3option(prot);
4ring r;
5ideal i=xy2+yz2+xz2,x3+x3z,y3,z3;
6list I=mres(i,0);
7I;
8kill r;
9ring an=32003,(w,x,y,z),(dp,c);
10ideal i=
11wx2+y4,
12xy2+z3,
13yz2+w3,
14zw2+x3,
15xyz+yzw+zwx+wxy;
16list I=mres(i,0);
17I;
18kill an;
19ring an=32003,(w,x,y,z),(dp,c);
20ideal i=
21wx+y3,
22xy+z2,
23yz+w2,
24zw+x2,
25xy+yz+zw+wx;
26list I=mres(i,0);
27I;
28kill an;
29ring an=32003,(x,y,z),(dp,c);
30ideal i=
31zx2+y4,
32xy2+z4,
33yz2+x4,
34x2y+y2z+z2x;
35list I=mres(i,0);
36I;
37kill an;
38ring cyc5 = 32003,(f,a,b,c,d,e),dp;
39ideal i=
40a+b+c+d+e,
41de+1cd+1bc+1ae+1ab+abcde,
42cde+1bcd+1ade+1abe+1abc,
43bcde+1acde+1abde+1abce+1abcd;
44//std(i);
45list I=mres(i,0);
46I;
47kill cyc5;
48ring cyc5 =32003,(a,b,c,d,e,f),dp;
49ideal i=
50a4-b5,
51b4-c5,
52c4-d5,
53d4-e5,
54a3*b+b3*c+c3*d+d3*e+a*e3;
55list I=mres(i,0);
56I;
57kill cyc5;
58tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.