source: git/Tst/New/hdepth.tst

spielwiese
Last change on this file was 8d3b89, checked in by Adi Popescu <adi_popescum@…>, 10 years ago
updated test hdepth.tst
  • Property mode set to 100644
File size: 382 bytes
RevLine 
[8d3b89]1LIB "tst.lib"; tst_init();
[f03d78]2LIB "hdepth.lib";
3
4ring R = 0,t,ds;
5poly f = 2-3t-2t2+2t3+4t4;
6hdepth_p(f,5,0);
7hdepth_p(f,5,1);
8f = 5t2-5t3+t5;
9hdepth_p(f,3,0);
10f = 1-3t+6*t^3;
11hdepth_p(f,10,0);
12
13ring R = 0,(x(1..10)),dp;
14ideal i=maxideal(1);
15module M=i;
16hdepth(M);
17hdepth(M,0);
18hdepth(M,1);
19
20ring R = 0,(x,y,z),dp;
21ideal i = x2,xy,xz,y2,z2;
22module m = i;
23hdepth(m,0);
[8d3b89]24
25tst_status(1);$
Note: See TracBrowser for help on using the repository browser.