source: git/Tst/Buch/Example_1_9_32.tst @ a7efa79

spielwiese
Last change on this file since a7efa79 was a7efa79, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: new book version git-svn-id: file:///usr/local/Singular/svn/trunk@10182 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 542 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4============================= example 1.9.32  ==============================
5
6LIB "ncalg.lib";
7def A = makeUsl2();  setring A;
8option(redSB);  option(redTail);
9ideal I = e2,f;
10ideal J = groebner(I);
11resolution F = nres(J,0);
12F;
13print(matrix(F[1]));             // F[1] is the left map
14print(matrix(F[2]));             // F[2] is the middle map
15print(matrix(F[3]));             // F[3] is the right map
16
17resolution MF = minres(F);
18print(matrix(MF[1]));
19print(matrix(MF[2]));
20print(matrix(MF[3]));
21
22tst_status(1);$
23
Note: See TracBrowser for help on using the repository browser.