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

spielwiese
Last change on this file since 1427f62 was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 363 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4LIB("ehv.lib");
5
6ring  r = 0,(x,y),dp;
7ideal J = x;
8ideal I = x, 0 , y;
9ASSUME( 0, isSubset( I, std(J) ) == isSubset( std(I), std(J) ) );
10J = x+3,5;
11// J is not standard basis:
12attrib(J,"isSB");
13
14//no warning should be printed , since isSubset computes standard basis for J before calling reduce!
15isSubset( I, J );
16
17tst_status(1);$;
18
19
Note: See TracBrowser for help on using the repository browser.