source: git/Tst/Short/bug_51.tst @ fdda546

spielwiese
Last change on this file since fdda546 was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 421 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.