source: git/Tst/Short/bug_14.tst @ 09cb443

spielwiese
Last change on this file since 09cb443 was 7a0c5c, checked in by Hans Schönemann <hannes@…>, 25 years ago
* hannes: regularity (bug_14), proc show (homolog_s) git-svn-id: file:///usr/local/Singular/svn/trunk@3447 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 537 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// off by one in regularity (anne)
5ring R=0,(u,v,x,y,z),dp;
6// should be 2
7regularity(mres(ideal(ux,vx,uy,vy),0));
8// should be 5 (nvars)
9regularity(mres(ideal(uvxyz),0));
10ring r=0,(x1,x2,x3,x4,x5),dp;
11// should be 3
12regularity(mres(ideal(x1*x3,x2*x4,x1*x2*x5,x2*x3*x5,x3*x4*x5,x1*x4*x5),0));
13ring rr=0,(y1,y2,y3,x1,x2,x3,x4),dp;
14// should be 2
15regularity(mres(ideal(y1*x1,y1*x2,y1*x3,y1*x4,
16                      y2*x1,y2*x2,y2*x3,y2*x4,
17                      y3*x1,y3*x2,y3*x3,y3*x4,
18                      x3*x4),0));
19
20tst_status(1);$
Note: See TracBrowser for help on using the repository browser.