source: git/Tst/Short/bug_tr641.tst @ 1427f62

spielwiese
Last change on this file since 1427f62 was 7c9d6f, checked in by Hans Schoenemann <hannes@…>, 9 years ago
fix tr. #641 (slaplagne,pfister)
  • Property mode set to 100644
File size: 354 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4LIB "primdec.lib";
5ring rng = 0,(x,y,z),dp;
6ideal I = 21*x^2*z+21*z^2,7*y^2-6*y,-5*x*y^2-29*y*z+30*z^2;
7def ma1 = minAssGTZ (I);
8def ma2 =  minAssGTZ(I,"noFacstd");  //wrong?
9ma1;
10ma2;
11idealsEqual( intersect(ma1[1],ma1[2],ma1[3]), std(radical(I)) );
12idealsEqual( intersect(ma2[1],ma2[2] ), std(radical(I)) );
13
14tst_status(1);$
Note: See TracBrowser for help on using the repository browser.