source: git/Tst/Old/algmap.tst @ 935bf64

fieker-DuValspielwiese
Last change on this file since 935bf64 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: 581 bytes
Line 
1ring r0=(0,a,b),(x,y,z),dp;
2ideal i0=
3(3a2b-2b5)*x2z+(1000b+a20)*xy2,
4(20b5+a4b2)*xz3+x2yz,
5xy3+x3y,
6(20b10)*xyz2+yz4,
7xyz+(a+b)*z2;
8i0;
9
10ring r1=0,(x,y,z,a,b),dp;
11ideal i=a,b;
12ideal j=x,y,z;
13ideal i1=system("algmap",r0,i0,i,j);
14i1;
15
16i1=system("algfetch",r0,i0);
17i1;
18
19ring r2=(0,a),(x,y,z,b),dp;
20ideal i=a,b;
21ideal j=x,y,z;
22ideal i1=system("algmap",r0,i0,i,j);
23i1;
24
25i1=system("algfetch",r0,i0);
26i1;
27kill r2;
28
29ring r2=(0,a,b,z),(x,y),dp;
30ideal i=a,b;
31ideal j=x,y,z;
32ideal i1=system("algmap",r0,i0,i,j);
33i1;
34
35i1=system("algfetch",r0,i0);
36i1;
37kill r2;
38
39LIB "tst.lib";tst_status(1);$
40
Note: See TracBrowser for help on using the repository browser.