spielwiese
Last change
on this file since 170190 was
170190,
checked in by Hans Schoenemann <hannes@…>, 5 years ago
|
fix: ssi for flintQ(...) polys
|
-
Property mode set to
100644
|
File size:
484 bytes
|
Line | |
---|
1 | LIB "tst.lib"; |
---|
2 | tst_init(); |
---|
3 | |
---|
4 | link l1="ssi:w ss1.ssi"; |
---|
5 | ring r1=ZZ,x,dp; |
---|
6 | poly p=x+11; |
---|
7 | write(l1,p); |
---|
8 | ring r2=ZZ/22,x,dp; |
---|
9 | poly p=x+11; |
---|
10 | write(l1,p); |
---|
11 | close(l1); |
---|
12 | link l2="ssi:r ss1.ssi"; |
---|
13 | def h1=read(l2); |
---|
14 | h1; |
---|
15 | basering; |
---|
16 | def h2=read(l2); |
---|
17 | h2; |
---|
18 | basering; |
---|
19 | listvar(); |
---|
20 | close(l2); |
---|
21 | |
---|
22 | ring r3=flintQ("bb"),x,dp; |
---|
23 | poly p=x+11+bb; |
---|
24 | p; |
---|
25 | write(l1,p); |
---|
26 | ring r4=flintZn(29,"a"),x,dp; |
---|
27 | poly p=x+11+a; |
---|
28 | p; |
---|
29 | write(l1,p); |
---|
30 | close(l1); |
---|
31 | def h3=read(l2); |
---|
32 | h3; |
---|
33 | basering; |
---|
34 | def h4=read(l2); |
---|
35 | h4; |
---|
36 | basering; |
---|
37 | close(l2); |
---|
38 | |
---|
39 | tst_status(1);$ |
---|
Note: See
TracBrowser
for help on using the repository browser.