source: git/Tst/Old/null.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: 591 bytes
Line 
1//
2// test script for nullspace command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),(c,ds);
6r1;
7LIB "lib0";
8"--------------------------------";
9matrix m4[2][2]=1,2,2,4;
10pmat(m4);
11nullspace(m4);
12"-------------------------------";
13matrix m1[4][4]=1,0;
14pmat(m1);
15nullspace(m1);
16//mistake
17"-------------------------------";
18int k=7;
19matrix m2[k][5];
20pmat(m2);
21nullspace(m2);
22//mistake
23"------------------------------";
24int k=7;
25matrix m3[k+3][9]=1,2,3,4,5,6,0,0,4,5;
26pmat(m3);
27nullspace(m3);
28//mistake
29"--------------------------------";
30listvar(all);
31kill r1;
32LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.