source: git/Tst/Old/mapp.tst @ e706ff

spielwiese
Last change on this file since e706ff 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: 363 bytes
Line 
1//
2// test script for map command
3//
4ring r1 = 32003,(x,y,z),dp;
5r1;
6ideal i=x,y,z;
7ring r2=32003,(a,b),dp;
8r2;
9map m=r1,a,b,a+b;
10m(i);
11"------------------------------";
12ring r3=0,(x,y,z),dp;
13r3;
14ideal i1=x2,y2,z2;
15ring r4=0,(a,b),dp;
16r4;
17map m1=r3,a,b,a-b;
18m1(i1);
19"------------------------------";
20listvar(all);
21kill r1,r2,r3,r4;
22LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.