source: git/Tst/Old/siz.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 528 bytes
Line 
1//
2// test script for size command
3//
4ring r1 = 32003,(x,y,z),dp;
5r1;
6"-------------------------------";
7string s="feierabend";
8intvec iv=1,2,3;
9poly p=x+2y-z;
10vector v=[x-z,x,y,0];
11ideal i=p,z;
12module m=v,[0,1],[2,3,0],4*v;
13size(s);
14"--------------------------";
15size(iv);
16"---------------------------";
17size(p);
18"---------------------------";
19size(v);
20"-----------------------------";
21size(i);
22"-------------------------------";
23size(m);
24"------------------------------";
25listvar(all);
26kill r1;
27LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.