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

spielwiese
Last change on this file since b35b93 was b35b93, checked in by Olaf Bachmann <obachman@…>, 26 years ago
This commit was generated by cvs2svn to compensate for changes in r1396, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@1397 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 771 bytes
Line 
1// $Id: finduni_s.tst,v 1.1.1.1 1998-04-17 15:07:41 obachman Exp $
2
3//
4// finduni_s.tst - short tests for finduni
5//
6
7
8LIB "tst.lib";
9tst_init();
10tst_ignore("CVS: $Id: finduni_s.tst,v 1.1.1.1 1998-04-17 15:07:41 obachman Exp $");
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
30quit;
Note: See TracBrowser for help on using the repository browser.