spielwiese
Last change
on this file since a7efa79 was
a7efa79,
checked in by Hans Schönemann <hannes@…>, 16 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 | |
---|
1 | LIB "tst.lib"; |
---|
2 | tst_init(); |
---|
3 | |
---|
4 | ============================= example 1.9.32 ============================== |
---|
5 | |
---|
6 | LIB "ncalg.lib"; |
---|
7 | def A = makeUsl2(); setring A; |
---|
8 | option(redSB); option(redTail); |
---|
9 | ideal I = e2,f; |
---|
10 | ideal J = groebner(I); |
---|
11 | resolution F = nres(J,0); |
---|
12 | F; |
---|
13 | print(matrix(F[1])); // F[1] is the left map |
---|
14 | print(matrix(F[2])); // F[2] is the middle map |
---|
15 | print(matrix(F[3])); // F[3] is the right map |
---|
16 | |
---|
17 | resolution MF = minres(F); |
---|
18 | print(matrix(MF[1])); |
---|
19 | print(matrix(MF[2])); |
---|
20 | print(matrix(MF[3])); |
---|
21 | |
---|
22 | tst_status(1);$ |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.