source: git/Tst/Short/bug_diff.tst @ 0054e7

spielwiese
Last change on this file since 0054e7 was dbfae6, checked in by Hans Schönemann <hannes@…>, 14 years ago
trac 195 git-svn-id: file:///usr/local/Singular/svn/trunk@12425 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 314 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring r=0,(x,y),dp;
5ideal H = x,y;
6ideal I = x2,y2;
7print(diff(H,I));
8ring r2=2,(x,y),dp;
9ideal H = x,y;
10ideal I = x2,y2;
11print(diff(H,I));
12
13print(diff(x2,x));// -> 0
14print(diff(ideal(x),ideal(x2))); // BUG: 0x
15print(diff(ideal(x),ideal(x2+x,x4+x)));// BUG: 0x+1,0x3+1
16
17tst_status(1);$
18
Note: See TracBrowser for help on using the repository browser.