source: git/Tst/Short/allres_s.tst @ f2c70a

spielwiese
Last change on this file since f2c70a 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();
3
4ring an=32003,(w,x,y,z),(dp,C);
5ideal i=
61w2xy+1w2xz+1w2yz+1wxyz+1x2yz+1xy2z+1xyz2,
71w4x+1w4z+1w3yz+1w2xyz+1wx2yz+1x2y2z+1xy2z2,
81w6+1w5z+1w4xz+1w3xyz+1w2xy2z+1wx2y2z+1x2y2z2;
9tst_test_res(i);
10kill an;
11
12ring an=32003,(w,x,y,z),(dp,c);
13ideal i=
14wx2+y3,
15xy2+z3,
16yz2+w3,
17zw2+x3,
18xyz+yzw+zwx+wxy;
19tst_test_res(i);
20kill an;
21
22ring an=32003,(w,x,y,z),(dp,c);
23ideal i=
24wx+y2,
25xy+z2,
26yz+w2,
27zw+x2,
28xy+yz+zw+wx;
29tst_test_res(i);
30kill an;
31
32ring an=32003,(x,y,z),(dp,c);
33ideal i=
34zx2+y3,
35xy2+z3,
36yz2+x3,
37x2y+y2z+z2x;
38tst_test_res(i);
39kill an;
40
41ring an=0,(w,x,y,z),(dp,C);
42ideal i=
431w2xy+1w2xz+1w2yz+1wxyz+1x2yz+1xy2z+1xyz2,
441w4x+1w4z+1w3yz+1w2xyz+1wx2yz+1x2y2z+1xy2z2,
451w6+1w5z+1w4xz+1w3xyz+1w2xy2z+1wx2y2z+1x2y2z2;
46tst_test_res(i);
47kill an;
48
49ring an=0,(w,x,y,z),(dp,c);
50ideal i=
51wx2+y3,
52xy2+z3,
53yz2+w3,
54zw2+x3,
55xyz+yzw+zwx+wxy;
56tst_test_res(i, 1);
57kill an;
58
59ring an=0,(w,x,y,z),(dp,c);
60ideal i=
61wx+y2,
62xy+z2,
63yz+w2,
64zw+x2,
65xy+yz+zw+wx;
66tst_test_res(i);
67kill an;
68
69ring an=0,(x,y,z),(dp,c);
70ideal i=
71zx2+y3,
72xy2+z3,
73yz2+x3,
74x2y+y2z+z2x;
75tst_test_res(i);
76kill an;
77
78tst_status(1);$
Note: See TracBrowser for help on using the repository browser.