source: git/Tst/Short/gaussm_s.tst @ 6884f3

fieker-DuValspielwiese
Last change on this file since 6884f3 was b86a37, checked in by Hans Schönemann <hannes@…>, 20 years ago
*hannes: more details git-svn-id: file:///usr/local/Singular/svn/trunk@7248 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 396 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4LIB "gaussman.lib";
5
6
7proc tst_gaussm(poly f)
8{
9  basering;
10  f;
11  print(monodromy(f));
12  "vwfilt";
13  list l=vwfilt(f);
14  l;
15  "spnf";
16  l=spnf(l[1],l[3],l[4])+list(l[5],l[6]);
17  "endvfilt";
18  endvfilt(l);
19  "spgamma";
20  spgamma(l);
21  "tmatrix";
22  l=tmatrix(f);
23  print(l[1]);
24  print(l[2]);
25}
26
27
28ring R=0,(x,y),ds;
29poly f=x5+x2y2+y5;
30
31tst_gaussm(f);
32
33tst_status(1);
34$
Note: See TracBrowser for help on using the repository browser.