source: git/Tst/Short/bug_reduce.tst @ fe969a

spielwiese
Last change on this file since fe969a was d6001e1, checked in by Hans Schönemann <hannes@…>, 14 years ago
fix NF bug (Tst/Short/bug_reduce.tst) git-svn-id: file:///usr/local/Singular/svn/trunk@12706 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 433 bytes
Line 
1LIB "tst.lib";
2tst_init();
3// error in NF: wrong strat. due to wrong rank
4
5ring r = 0,(x,y),ds;
6poly f = x^5+y^5;
7ideal j = jacob(f),f;
8j = std(j);
9maxideal(6);
10NF(x3y3,j);             //results in x3y3 correct
11NF(maxideal(6),j);      //results ii 0    NOT correct
12// and for module:
13NF(x3y3*gen(1),j*gen(1));             //results in x3y3 correct
14NF(maxideal(6)*gen(1),j*gen(1));      //results ii 0    NOT correct
15
16tst_status(1);$
Note: See TracBrowser for help on using the repository browser.