source: git/Tst/Short/bug_tr844.tst

spielwiese
Last change on this file was 4a9821a, checked in by Hans Schoenemann <hannes@…>, 2 weeks ago
more tests number -> bigint/int
  • Property mode set to 100644
File size: 331 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// map Q->Z(bigint)
5ring r=QQ,x,dp;
6int n;
7bigint N;
8n = int(7/3); n;
9N = bigint(7/3); N;
10N = int(7/3); N;
11N = 7/3;
12ring R=ZZ,d,dp;
13N=number(5); N;
14ring R2=ZZ/32003,d,dp;
15N=number(6); N;
16int(number(5));
17ring R3=(integer,64),d,dp;
18N=number(7); N;
19N=bigint(number(6)); N;
20int(number(6));
21
22tst_status(1);$
Note: See TracBrowser for help on using the repository browser.