source: git/Tst/Short/finduni_s.tst @ 010b3f

spielwiese
Last change on this file since 010b3f 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: 663 bytes
Line 
1// $Id$
2
3//
4// finduni_s.tst - short tests for finduni
5//
6
7
8LIB "tst.lib";
9tst_init();
10tst_ignore("CVS: $Id$");
11
12option(redSB);
13
14// ======================
15// cyclic 6 in char 32003
16ring r=32003,(a,b,c,d,x,f), dp;
17ideal 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;
18ideal is=std(i);
19finduni(is);
20kill r;
21
22// =================
23// walks-7 in char 0
24ring r=0,(a,b,c,d,e,f,g), dp;
25ideal 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;
26ideal is=std(i);
27finduni(is);
28kill r;
29
30tst_status(1);$
Note: See TracBrowser for help on using the repository browser.