source: git/Tst/New/bug_std.tst

spielwiese
Last change on this file was cf4277e, checked in by Adi Popescu <adi_popescum@…>, 10 years ago
Bug Fix: updates, added fixed bug in tests
  • Property mode set to 100644
File size: 361 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring q = (integer,2,3),(r,s,a,b,b_2,b_1,b_0),lp;
5poly p0 = b -1*b_0 -2*b_1 -4*b_2;
6poly p1 = r-a*b_0;
7poly p2 = s*b_0;
8poly p3 = s*b_1;
9poly p4 = s*b_2;
10ideal I = (p0,p1,p2,p3,p4);
11poly goal = r- a*b;
12poly p = 1 - s;
13I = std(I);
14print("-------std(I+p)-------");
15std(I+p);
16print("-------std(I,p)-------");
17std(I,p);
18
19tst_status(1);
20$
Note: See TracBrowser for help on using the repository browser.