spielwiese
Last change
on this file since 47a5c2 was
b1ac99,
checked in by Thomas Siebert <siebert@…>, 26 years ago
|
*** empty log message ***
git-svn-id: file:///usr/local/Singular/svn/trunk@1529 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100644
|
File size:
611 bytes
|
Line | |
---|
1 | LIB "tst.lib"; |
---|
2 | tst_init(); |
---|
3 | // |
---|
4 | // test script for minor command |
---|
5 | // |
---|
6 | pagelength = 10000; |
---|
7 | ring r1 = 32003,(x,y,z),(c,dp); |
---|
8 | r1; |
---|
9 | LIB "lib0"; |
---|
10 | "-------------------------------"; |
---|
11 | matrix m1[3][3]=maxideal(2); |
---|
12 | pmat(m1); |
---|
13 | minor(m1,3); |
---|
14 | "---------------------------------"; |
---|
15 | ring r2=0,(x(1..9)),(dp); |
---|
16 | matrix m2[3][3]=maxideal(1); |
---|
17 | pmat(m2); |
---|
18 | minor(m2,2); |
---|
19 | "---------------------------------"; |
---|
20 | ring r3=0,(x(1..64)),ds; |
---|
21 | matrix m3[8][8]= maxideal(1); |
---|
22 | pmat(m3); |
---|
23 | minor(m3,1); |
---|
24 | "----------------------------------"; |
---|
25 | matrix m4[8][8]=maxideal(2); |
---|
26 | pmat(m4); |
---|
27 | minor(m4,1); |
---|
28 | "----------------------------------"; |
---|
29 | listvar(all); |
---|
30 | kill r1,r2,r3; |
---|
31 | $; |
---|
Note: See
TracBrowser
for help on using the repository browser.