source: git/Tst/Short/bug_tr709.tst @ e9478b

spielwiese
Last change on this file since e9478b was e9478b, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 334 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4LIB "primdec.lib";
5ring rng = 2,(x,y,z),dp;
6ideal I = x^2*y+x*z^2+1, x^2*z+z^2, z^3+1;
7system("random",1426357199);
8def L2 = primdecGTZ(I);
9
10//here is the problem
11idealsEqual( radical( L2[2][1] ),  L2[2][2]  ); // 0
12L2[2][2] ;
13radical( L2[2][1] );
14std(L2[2][2]);
15std(radical( L2[2][1] ));
16
17tst_status(1);$
Note: See TracBrowser for help on using the repository browser.