source: git/Tst/Short/bug_tr662.tst @ 352a84b

fieker-DuValspielwiese
Last change on this file since 352a84b was fd23204, checked in by Hans Schoenemann <hannes@…>, 10 years ago
fix: tr. #662
  • Property mode set to 100644
File size: 448 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// primary decomposition with wromng component
5LIB"primdec.lib";
6option(redTail);
7option(redSB);
8ring rng = (0),(m,g,r,w,j,a,i,q),dp;
9ideal I = -3*g*i+30*m^2,
1016*w*q-7*r*a,
11-17*g*i*q-7*m*r*q,
12-22*m*g+11*w^2;
13
14list L = primdecGTZ (std(I));
15
16size(L); // should be 7
17L[4][1];
18isSubModule(I, L[4][1] );
19
20testPrimary( L , I ) ;
21
22list L2 = primdecSY (std(I));
23size(L2); // should be 7
24testPrimary( L2 , I ) ;
25
26tst_status(1);$
Note: See TracBrowser for help on using the repository browser.