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

spielwiese
Last change on this file since fdda546 was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 343 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring rng = integer,(xe,xv),dp;
5
6ideal j = 4*xv^3+3*xv^2, 3*xe*xv^2+xe-2*xv;
7ideal i = -3, -3*xv-1, -3;
8
9def q1 = quotient( std(j), std(i) );
10def q2 = quotient( j, i );
11
12def r1 = reduce( std(q1), std(q2) );
13def r2 = reduce( std(q2), std(q1) );
14
15ASSUME( 0, size(r1)==0 );
16ASSUME( 0, size(r2)==0 );
17
18
19tst_status(1);$
20
Note: See TracBrowser for help on using the repository browser.