source: git/Tst/Old/mora2.tst @ e706ff

spielwiese
Last change on this file since e706ff 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.5 KB
Line 
1" ============= cyclic_roots_7(homog) d- ==========================";
2"deg 60, dim 2, elem 99, Ende im Grad 17
3//Macaulay 3.55 min (SE/30), 2.45 sec (PowerBook)
4//Sing1/93 (test 4 12) 3.01 min SE/30, 2.45 (PowerBook)";
5ring r6 = 32003,(a,b,c,d,e,f,g),ds;
6r6;
7poly s1=a+b+c+d+e+f;
8poly s2=ab+bc+cd+de+ef+fa;
9poly s3=abc+bcd+cde+edf+efa+fab;
10poly s4=abcd+bcde+cdef+defa+efab+fabc;
11poly s5=abcde+bcdef+cdefa+defab+efabc+fabcd;
12poly s6=abcdef+g^6;
13ideal i=s1,s2,s3,s4,s5,s6;
14ideal j=std(i);
15"dim: "+ string(dim(j)) +",  mult: "+ string(mult(j)) +",  elem: "
16                                                        + string(size(j));
17j;
18kill r6;
19" ============= standard(homog) l1 d3- ==========================";
20"deg 720, dim 1, elem 68
21// Sing1/93c:39sec (4 12)  (PowerBook)";
22ring r8 = 32003,(t,x,y,z),(ls(1),ds(3));
23r8;
24poly s1=1x3y2t4+21328x5yt3+10667x2y4t3+21328x2yz3t3+10666xy6t2+10667y9;
25poly s2=1x2y2z2t2+3z8;
26poly s3=5x4y2t4+4xy5t4+2x2y2z3t3+1y7t3+11x10;
27ideal i=s1,s2,s3;
28ideal j=std(i);
29"dim: "+ string(dim(j)) +",  mult: "+ string(mult(j)) +",  elem: "
30                                                        + string(size(j));
31j;
32kill r8;
33" ============= 3 Puiseux-Paare ==========================";
34"deg , dim, elem ";
35listvar(all);
36ring p2=32003,(t, x, y),ls;
37poly s1=x-t72;
38poly s2=y-t84-t111-t160;
39ideal i=s1,s2;
40ideal j=std(i);
41"dim: "+ string(dim(j)) +",  mult: "+ string(mult(j)) +",  elem: "
42                                                        + string(size(j));
43j;                                                       
44kill p2;
45LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.