source: git/Tst/Manual/canonMap.tst @ 894057

spielwiese
Last change on this file since 894057 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: 406 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "homolog.lib";
3ring s=0,(x,y),dp;
4ideal i = x,y;
5canonMap(i);
6ring R = 0,(x,y,z,w),dp;
7ideal I1 = x,y;
8ideal I2 = z,w;
9ideal I = intersect(I1,I2);
10canonMap(I);
11module M = syz(I);
12canonMap(M);
13ring S = 0,(x,y,z,t),Wp(3,4,5,1);
14ideal I = x-t3,y-t4,z-t5;
15ideal J = eliminate(I,t);
16ring T = 0,(x,y,z),Wp(3,4,5);
17ideal p = imap(S,J);
18ideal p2 = p^2;
19canonMap(p2);
20tst_status(1);$
Note: See TracBrowser for help on using the repository browser.