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

spielwiese
Last change on this file since 1427f62 was 42fe02, checked in by Hans Schoenemann <hannes@…>, 8 years ago
fix: writing/reading rings over transz,/alg. extensions via ssi
  • Property mode set to 100644
File size: 386 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// write/read rings over tansz./alg.extensions
5ring R = (0,a),x,dp;
6minpoly = a2+1;
7link l = "ssi:w ssi_rings";
8write(l, R);
9write(l,a+2+3x);
10ring R2=(7,a),y,dp;
11write(l,R2);
12write(l,4a+5+6y);
13close(l);
14l="ssi:r ssi_rings";
15def r1=read(l); r1;
16def r2=read(l); r2;
17def r3=read(l); r3;
18l;
19def r4=read(l); r4;
20l;
21def r5=read(l); r5;
22close(l);
23
24tst_status(1);$
25
Note: See TracBrowser for help on using the repository browser.