source: git/Tst/Manual/_depth.tst @ c2f6bd

spielwiese
Last change on this file since c2f6bd was e197f5, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
fix due to case sensitive file systems fix: tests from Manual/ with only case different names chg: updated *.uu results as well! chg: updated regress.cmd to remote the leading _ for tests starting with "_[a-z0-9]" during the TC output NOTE: the tests with lower case names got a leading underscore character (_)
  • Property mode set to 100644
File size: 367 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "homolog.lib";
3ring R=0,(x,y,z),dp;
4ideal I=x2,xy,yz;
5module M=0;
6depth(M,I);   // depth(<x2,xy,yz>,Q[x,y,z])
7ring r=0,(x,y,z),ds;  // local ring
8matrix M[2][2]=x,xy,1+yz,0;
9print(M);
10depth(M);     // depth(maxideal,coker(M))
11ideal I=x;
12depth(M,I);   // depth(<x>,coker(M))
13I=x+z;
14depth(M,I);   // depth(<x+z>,coker(M))
15tst_status(1);$
Note: See TracBrowser for help on using the repository browser.