source: git/Tst/Short/bug_51.tst @ 0054e7

spielwiese
Last change on this file since 0054e7 was 8432d4, checked in by Hans Schönemann <hannes@…>, 16 years ago
*** empty log message *** git-svn-id: file:///usr/local/Singular/svn/trunk@10848 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 423 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// missing branch, tau_es diff.
5LIB "hnoether.lib";
6LIB "equising.lib";
7ring r = 0,(x,y),ds;
8poly f = (x2+y2)*(y2-(x-y)^3)*(x^3+y9);
9tau_es(f);
10f = ((x+y)^2+y2)*(y2-x3)*((x+y)^3+y9);
11tau_es(f);
12
13f = (y2-(x-y)^3)*(x3+y9);     //4 Zweige
14poly g=subst(f,x,x+y);
15tau_es(g);          // sollte 24 sein
16list K=esIdeal(g); 
17vdim(std(K[1]));    // sollte mit tau_es(g) uebereinstimmen
18
19tst_status(1);$
Note: See TracBrowser for help on using the repository browser.