source: git/Tst/Old/res2.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: 503 bytes
Line 
1// betti wrong after minres (0.8.9f) (pfister)
2ring rh3=32003,(w,x,y,z),(dp,C);
3int a =11;
4int b =10;
5int c =3;
6int t =1;
7poly f= x^a+y^b+z^(3*c)+x^(c+2)*y^(c-1)+x^(c-1)*y^(c-1)*z3+x^(c-2)*y^c*(y2+t*x)^2;
8ideal j= jacob(f);
9ideal i=homog(j,w);
10//timer=1;
11ideal j1=std(i);
12ideal j0;
13int k;
14int l=size(j1);
15for (k=1;k<=l;k=k+1)
16{
17   j0[k]=j1[l-k+1];
18}
19j0;
20attrib(j0,"isSB",1);
21list jres=sres(j0,0);
22jres[3];
23list jmin=minres(jres);
24jmin[3];
25betti(jmin);
26kill a,b,c,t,rh3;
27LIB "tst.lib";tst_status(1);$   
Note: See TracBrowser for help on using the repository browser.