source: git/Tst/Short/bug_tr719.tst @ 1427f62

spielwiese
Last change on this file since 1427f62 was 2bf04b, checked in by Hans Schoenemann <hannes@…>, 8 years ago
format
  • Property mode set to 100644
File size: 413 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// reduce (integers, mixed ordering) does not terminate
5ring r=integer,(t,x(1..5)),ws(1,-1,-1,-1,-1,-1);
6poly h = 3*t*x(2)*x(4)-21*t*x(1)*x(5)-12*t^2*x(1)*x(2)-2*t^2*x(1)*x(3)-6*t^2*x(1)*x(4);
7ideal G =
8x(2)+6*x(4)+7*x(5)+4*t*x(2),
9x(2)+8*x(3)+7*x(5)+t*x(2),
10t*x(1)+3*t*x(2)+t^2*x(1),
11t*x(4)+21*t*x(5)+12*t^2*x(2)+2*t^2*x(3)+7*t^2*x(4),
122-t;
13G = std(G);
14reduce(h,G);
15
16tst_status(1);$
17
Note: See TracBrowser for help on using the repository browser.