source: git/Tst/Short/bug_tr630.tst @ 7cc9ac8

fieker-DuValspielwiese
Last change on this file since 7cc9ac8 was 61c8d25, checked in by Hans Schoenemann <hannes@…>, 10 years ago
tests for #630
  • Property mode set to 100644
File size: 244 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// overflow in subst
5
6ring rng = 0,(x,y,z,aa),(L(2^16-1),dp); // to make it indep of the machine
7ideal I = x^10000;
8
9I = subst (I,x,x^ 10000);
10
11poly f = x^10000;
12f = subst (f,x,x^ 10000);
13
14x^100000;
15
16tst_status(1);$
Note: See TracBrowser for help on using the repository browser.