source: git/Tst/Old/mino.tst @ 46976a6

spielwiese
Last change on this file since 46976a6 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: 612 bytes
Line 
1//
2// test script for minor command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),(c,dp);
6r1;
7LIB "lib0";
8"-------------------------------";
9matrix m1[3][3]=maxideal(2);
10pmat(m1);
11minor(m1,3);
12"---------------------------------";
13ring r2=0,(x(1..9)),(dp);
14matrix m2[3][3]=maxideal(1);
15pmat(m2);
16minor(m2,2);
17"---------------------------------";
18ring r3=0,(x(1..64)),ds;
19matrix m3[8][8]= maxideal(1);
20pmat(m3);
21minor(m3,1);
22"----------------------------------";
23matrix m4[8][8]=maxideal(2);
24pmat(m4);
25minor(m4,1);
26"----------------------------------";
27listvar(all);
28kill r1,r2,r3;
29LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.