source: git/Tst/Old/siz.tst @ 7924ee

spielwiese
Last change on this file since 7924ee 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: 548 bytes
Line 
1//
2// test script for size command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),dp;
6r1;
7"-------------------------------";
8string s="feierabend";
9intvec iv=1,2,3;
10poly p=x+2y-z;
11vector v=[x-z,x,y,0];
12ideal i=p,z;
13module m=v,[0,1],[2,3,0],4*v;
14size(s);
15"--------------------------";
16size(iv);
17"---------------------------";
18size(p);
19"---------------------------";
20size(v);
21"-----------------------------";
22size(i);
23"-------------------------------";
24size(m);
25"------------------------------";
26listvar(all);
27kill r1;
28LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.