source: git/Tst/Short/finduni_s.tst @ a866f1

spielwiese
Last change on this file since a866f1 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: 629 bytes
Line 
1//
2// finduni_s.tst - short tests for finduni
3//
4
5
6LIB "tst.lib";
7tst_init();
8
9option(redSB);
10
11// ======================
12// cyclic 6 in char 32003
13ring r=32003,(a,b,c,d,x,f), dp;
14ideal i=a+b+c+d+x+f, ab+bc+cd+dx+xf+af, abc+bcd+cdx+d*xf+axf+abf, abcd+bcdx+cd*xf+ad*xf+abxf+abcf, abcdx+bcd*xf+acd*xf+abd*xf+abcxf+abcdf, abcd*xf-1;
15ideal is=std(i);
16finduni(is);
17kill r;
18
19// =================
20// walks-7 in char 0
21ring r=0,(a,b,c,d,e,f,g), dp;
22ideal i=2gb+2fc+2ed+a2+a, 2gc+2fd+e2+2ba+b, 2gd+2fe+2ca+c+b2, 2ge+f2+2da+d+2cb, 2gf+2ea+e+2db+c2, g2+2fa+f+2eb+2dc, 2ga+g+2fb+2ec+d2;
23ideal is=std(i);
24finduni(is);
25kill r;
26
27tst_status(1);$
Note: See TracBrowser for help on using the repository browser.