source: git/Tst/Short/bug_tr703.tst @ 3fec5d0

fieker-DuValspielwiese
Last change on this file since 3fec5d0 was efb096, checked in by Hans Schoenemann <hannes@…>, 9 years ago
fix tr. #703 (degree/ecart for ws-ord with diff. signs)
  • Property mode set to 100644
File size: 356 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring rng = 0,(x,y),(ws(5,-9),C);
5ideal J = x*y^4+x*y^3+x^3,
6-y^4+x*y^2;
7ideal gJ =  std(J);
8ideal ggJ =  std(gJ);
9gJ;
10reduce (J,gJ );
11ggJ;
12reduce (J,ggJ );
13
14ring r = 0,(x,y),(C,ws(5,-9));
15ideal J = x*y^4+x*y^3+x^3,
16-y^4+x*y^2;
17ideal gJ =  std(J);
18ideal ggJ =  std(gJ);
19gJ;
20reduce (J,gJ );
21ggJ;
22reduce (J,ggJ );
23
24tst_status(1);$
Note: See TracBrowser for help on using the repository browser.