source: git/Tst/Old/cyclic.tst @ 882ae9c

spielwiese
Last change on this file since 882ae9c was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.2 KB
Line 
1option(prot,sugarCrit);
2" ============= cyclic_roots_5(isol) + ==========================";
3ring r4 = 0,(a,b,c,d,e),dp;
4r4;
5poly s1=a+b+c+d+e;
6poly s2=de+1cd+1bc+1ae+1ab;
7poly s3=cde+1bcd+1ade+1abe+1abc;
8poly s4=bcde+1acde+1abde+1abce+1abcd;
9poly s5=abcde+1;
10ideal i=s1,s2,s3,s4,s5;
11ideal j=std(i);
12"dim: "+ string(dim(j)) +",  mult: "+ string(mult(j)) +",  elem: "
13                                                        + string(size(j));
14kill r4;
15"====================  standard char0  =============================";
16//      H7 l, char 0, test0,11,1: 61/31 ohne vollst; Reduktion
17ring r=
180,(x,y),lp;
19poly f=x5+y11+xy9+x3y9;
20ideal i=jacob(f);
21ideal j=std( i);
22size(j);
23kill r;
24" ============= cyclic_roots_6(homog) dp ==========================";
25ring r6 = 0,(a,b,c,d,e,f),dp;
26poly s1=a+b+c+d+e+f;
27poly s2=ab+bc+cd+de+ef+fa;
28poly s3=abc+bcd+cde+edf+efa+fab;
29poly s4=abcd+bcde+cdef+defa+efab+fabc;
30poly s5=abcde+bcdef+cdefa+defab+efabc+fabcd;
31poly s6=abcdef+1;
32ideal i=s1,s2,s3,s4,s5,s6;
33ideal j=std(i);
34"dim: "+ string(dim(j)) +",  mult: "+ string(mult(j)) +",  elem: "
35                                                        + string(size(j));
36kill r6;
37LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.