source: git/Tst/Manual/elim.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was 894057, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: Tests from online manual (res+stat on mamawutz): short ones Tst/Manual/s.lst
  • Property mode set to 100644
File size: 409 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "elim.lib";
3ring r=0,(x,y,u,v,w),dp;
4ideal i=x-u,y-u2,w-u3,v-x+y3;
5elim(i,3..4);
6elim(i,uv);
7int p = printlevel;
8printlevel = 2;
9elim(i,uv,"withWeights","slimgb");
10printlevel = p;
11ring S =  (0,a),(x,y,z,u,v),ws(1,2,3,4,5);
12minpoly = a2+1;
13qring T = std(ideal(ax+y2+v3,(x+v)^2));
14ideal i=x-u,y-u2,az-u3,v-x+ay3;
15module m=i*gen(1)+i*gen(2);
16m=elim(m,xy);
17show(m);
18tst_status(1);$
Note: See TracBrowser for help on using the repository browser.