source: git/Tst/Short/bug_tr707.tst @ fdda546

spielwiese
Last change on this file since fdda546 was ad75673, checked in by Hans Schoenemann <hannes@…>, 9 years ago
fix: tr. #707 (Pfister)
  • Property mode set to 100644
File size: 409 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4LIB "primdec.lib";
5system("random",1580702082);
6ring rng = (5,vv),(x,y,z),dp;
7minpoly = vv^2-2;
8ideal I = (-2*vv)*x*z+(-vv)*y^3,x*y*z-2*x*y+2*y^3,-x+z^2+(-2*vv);
9list L1 =  primdecGTZ (I);
10list L2 = primdecSY (I);
11L1;
12L2;
13
14testPrimary(L1 , I) ;
15testPrimary(L2 , I) ;
16
17// here is the issue:
18idealsEqual(L1[4][2],L2[4][2]); //ok
19idealsEqual(L1[4][1],L2[4][1]); //=0
20
21tst_status(1);$
Note: See TracBrowser for help on using the repository browser.