source: git/Tst/Short/bug_54.tst @ 47ca23

spielwiese
Last change on this file since 47ca23 was 47ca23, checked in by Hans Schönemann <hannes@…>, 15 years ago
*hannes: bug_54 git-svn-id: file:///usr/local/Singular/svn/trunk@11554 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 366 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// bug in coefss-3
5ring r=0,(x,y,z),dp;
6poly f = x4+2x2+x3y4+y5+z7;
7matrix T;
8matrix M = coeffs(f,y,T);
9T;
10// should be true:
11T*M == f;
12 //---------------
13ring R=0,(x,y,z),dp;
14ideal I = x3y4+z7+y5+x4+2x2,x2y+y3;
15matrix TT;
16matrix MM = coeffs(I,y);
17print (MM);
18matrix NN = coeffs(I,y,TT);
19// should be similiar:
20TT*NN;
21I;
22
23tst_status(1);$
Note: See TracBrowser for help on using the repository browser.