source: git/Tst/Short/bug_tr161.tst @ 09cb443

spielwiese
Last change on this file since 09cb443 was cc051cf, checked in by Hans Schönemann <hannes@…>, 14 years ago
*hannes: tr161 git-svn-id: file:///usr/local/Singular/svn/trunk@12213 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 255 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// sign got lost in map
5ring r=real, (x,y), dp;
6poly f= -1+2x2+3y3-2x-3y;
7poly g= -1-2x2-3y3+x+3y;
8ideal m=f,g;
9m;
10ring t=0,(x,y),dp;
11ideal n=imap(r,m);
12n;
13poly newf=imap(r,f); poly newg=imap(r,g); newf; newg;
14
15tst_status(1);$
Note: See TracBrowser for help on using the repository browser.