source: git/Tst/Short/bug_54.tst @ 033e00f

spielwiese
Last change on this file since 033e00f was 1cbc28, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
updated test according to legacy Singular + new lists of tests
  • Property mode set to 100644
File size: 365 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 similar:
20TT*NN;
21I;
22
23tst_status(1);$
Note: See TracBrowser for help on using the repository browser.