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

spielwiese
Last change on this file since 1427f62 was 20f29bb, checked in by Hans Schoenemann <hannes@…>, 9 years ago
conversion of bigint to extension fields
  • Property mode set to 100644
File size: 281 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// conversion of bigint to extensions
5bigint b=2;
6ring r1=(17,a),x,dp;
7number n=a+1;
8n*b;
9ring r2=(0,a),x,dp;
10number n=a+1;
11n*b;
12ring r3=(17,a),x,dp;
13minpoly=a2+1;
14number n=a+1;
15n*b;
16ring r4=(0,a),x,dp;
17minpoly=a2+1;
18number n=a+1;
19n*b;
20
21tst_status(1);$
Note: See TracBrowser for help on using the repository browser.