source: git/Tst/Old/aa.tst @ 267fe2d

spielwiese
Last change on this file since 267fe2d 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: 559 bytes
Line 
1pagelength = 1000;
2pagewidth=80;
3ring r= 32003,(x,y,z),lp;
4ideal i = x,y,z,x2z,yxz;
5i;
6i[2..3] = 3,4;
7i;
8matrix m[2][2] = i;
9m;
10m[1..2,1] = 1,2;
11m;
12matrix mm[5][5];
13mm[2..4,2..4] = 1,1,1,1,1,1,1,1,1;
14LIB "lib";
15formmat(mm);
16LIB "tst.lib";tst_status(1);$;
17i = m;
18i;
19m[1,3] = 5;
20LIB "tst.lib";tst_status(1);$;
21i;
22i[5-6] = 3;
23i;
24LIB "tst.lib";tst_status(1);$;
25matrix m[2][2] = x,y,z;
26m;
27ideal i = m;
28i;
29LIB "tst.lib";tst_status(1);$;
30m;
31pause;
32i[2] = y2;
33m[1,2] = 4;
34i;
35m;
36pause;
37m = i;
38m;
39LIB "tst.lib";tst_status(1);$;
40i = m;
41i;
42LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.