source: git/Tst/Short/gaussm_s.tst @ 17f79e9

spielwiese
Last change on this file since 17f79e9 was 17f79e9, checked in by Mathias Schulze <mschulze@…>, 22 years ago
*** empty log message *** git-svn-id: file:///usr/local/Singular/svn/trunk@5803 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 288 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  list l=vwfilt(f);
13  l;
14  l=spnf(l[1],l[3],l[4])+list(l[5],l[6]);
15  endvfilt(l);
16  spgamma(l);
17}
18
19
20ring R=0,(x,y),ds;
21poly f=x5+x2y2+y5;
22
23tst_gaussm(f);
24
25tst_status(1);
26$
Note: See TracBrowser for help on using the repository browser.