source: git/Tst/Short/ssi_Z.tst @ ccc9da5

spielwiese
Last change on this file since ccc9da5 was ccc9da5, checked in by Hans Schoenemann <hannes@…>, 5 years ago
tests for ssi (polys over Z, Z/n)
  • Property mode set to 100644
File size: 268 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4link l1="ssi:w ss1.ssi";
5ring r1=ZZ,x,dp;
6poly p=x+11;
7write(l1,p);
8ring r2=ZZ/22,x,dp;
9poly p=x+11;
10write(l1,p);
11close(l1);
12link l2="ssi:r ss1.ssi";
13def h1=read(l2);
14h1;
15basering;
16def h2=read(l2);
17h2;
18basering;
19listvar();
20
21tst_status(1);$
Note: See TracBrowser for help on using the repository browser.