source: git/Tst/New/hdepth.tst @ eab1606

fieker-DuValspielwiese
Last change on this file since eab1606 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
Line 
1LIB "tst.lib"; tst_init();
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);
24
25tst_status(1);$
Note: See TracBrowser for help on using the repository browser.