source: git/Tst/Old/ord.tst @ e706ff

spielwiese
Last change on this file since e706ff was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 2.1 KB
Line 
1ring r=32003,(x,y,z),dp;
2poly f=x+y+z;
3poly g=1+f+f^2+f^3+f^4;
4f;
5g;
6[f,1];
7[f,x^5];
8ring r1=32003,(x,y,z),(c,dp);
9poly f=fetch(r,f);
10poly g=fetch(r,g);
11f;
12g;
13[f,1];
14[f,x^5];
15// module orders
16ring r2=0,x,(ds,c);
17matrix m[2][3]=1,2,3,4,5;
18print(module(transpose(m)));
19"-------";
20ring r3=0,x,(dp,c);
21matrix m=fetch(r2,m);
22print(module(transpose(m)));
23"-------";
24ring r4=0,x,(Dp,c);
25matrix m=fetch(r2,m);
26print(module(transpose(m)));
27"-------";
28ring r5=0,x,(Ds,c);
29matrix m=fetch(r2,m);
30print(module(transpose(m)));
31"-------";
32ring r6=0,x,(ls,c);
33matrix m=fetch(r2,m);
34print(module(transpose(m)));
35"-------";
36ring r7=0,x,(lp,c);
37matrix m=fetch(r2,m);
38print(module(transpose(m)));
39"-------";
40ring r8=0,x,(ds,C);
41matrix m=fetch(r2,m);
42print(module(transpose(m)));
43"-------";
44ring r9=0,x,(dp,C);
45matrix m=fetch(r2,m);
46print(module(transpose(m)));
47"-------";
48ring r10=0,x,(Dp,C);
49matrix m=fetch(r2,m);
50print(module(transpose(m)));
51"-------";
52ring r11=0,x,(Ds,C);
53matrix m=fetch(r2,m);
54print(module(transpose(m)));
55"-------";
56ring r12=0,x,(ls,C);
57matrix m=fetch(r2,m);
58print(module(transpose(m)));
59"-------";
60ring r13=0,x,(lp,C);
61matrix m=fetch(r2,m);
62print(module(transpose(m)));
63
64"-------";
65ring R2=0,x,(c,ds);
66matrix m=fetch(r2,m);
67print(module(transpose(m)));
68"-------";
69ring R3=0,x,(c,dp);
70matrix m=fetch(r2,m);
71print(module(transpose(m)));
72"-------";
73ring R4=0,x,(c,Dp);
74matrix m=fetch(r2,m);
75print(module(transpose(m)));
76"-------";
77ring R5=0,x,(c,Ds);
78matrix m=fetch(r2,m);
79print(module(transpose(m)));
80"-------";
81ring R6=0,x,(c,ls);
82matrix m=fetch(r2,m);
83print(module(transpose(m)));
84"-------";
85ring R7=0,x,(c,lp);
86matrix m=fetch(r2,m);
87print(module(transpose(m)));
88"-------";
89ring R8=0,x,(C,ds);
90matrix m=fetch(r2,m);
91print(module(transpose(m)));
92"-------";
93ring R9=0,x,(C,dp);
94matrix m=fetch(r2,m);
95print(module(transpose(m)));
96"-------";
97ring R10=0,x,(C,Dp);
98matrix m=fetch(r2,m);
99print(module(transpose(m)));
100"-------";
101ring R11=0,x,(C,Ds);
102matrix m=fetch(r2,m);
103print(module(transpose(m)));
104"-------";
105ring R12=0,x,(C,ls);
106matrix m=fetch(r2,m);
107print(module(transpose(m)));
108"-------";
109ring R13=0,x,(C,lp);
110matrix m=fetch(r2,m);
111print(module(transpose(m)));
112
113LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.