source: git/Tst/Short/bug_tr376.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was ead697, checked in by Hans Schoenemann <hannes@…>, 13 years ago
tests for tr. 376 git-svn-id: file:///usr/local/Singular/svn/trunk@14402 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 369 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4 // overflow while reading a monomial
5
6 ring r=0,(x,y,t),dp;
7 poly p1 = 3842432640y5t3;
8 ring s=536870909,(x,y,t),dp;
9 poly p2 = 3842432640y5t3;
10 poly p1 = fetch(r, p1);
11 p1-p2;
12
13 ring rr=0,(x,y,t),dp;
14 poly p1 = 3842432640*y5t3;
15 ring ss=536870909,(x,y,t),dp;
16 poly p2 = 3842432640*y5t3;
17 poly p1 = fetch(rr, p1);
18 p1-p2;
19
20
21tst_status(1);$
Note: See TracBrowser for help on using the repository browser.