source: git/Tst/Long/fglmquot1_l.tst @ e9aefc

spielwiese
Last change on this file since e9aefc was ef52d6, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Update testsuite wrt current master (320c4f5e64cad778b4ada9556a9b0a6c71cab83a) NOTE: some wrong/bad tests were removed... TODO: add the reset of these updates after updating LIB/
  • Property mode set to 100644
File size: 1.0 KB
Line 
1//
2// fglmquot1_l.tst - long tests for fglmquot command
3//
4
5LIB "tst.lib";
6tst_init();
7
8option(redSB);
9
10ring r=0,(x9,x8,x7,x6,x5,x4,x3,x2,x1),lp;
11poly  f1= x1^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x1 - 8;
12poly  f2= x2^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x2 - 8;
13poly  f3= x3^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x3 - 8;
14poly  f4= x4^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x4 - 8;
15poly  f5= x5^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x5 - 8;
16poly  f6= x6^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x6 - 8;
17poly  f7= x7^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x7 - 8;
18poly  f8= x8^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x8 - 8;
19poly  f9= x9^2 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9 - 2*x9 - 8;
20ideal i=f1,f2,f3,f4,f5,f6,f7,f8,f9;
21ideal j=stdfglm(i);
22poly q=(8*x1^14-56*x1^13-280*x1^12+2856*x1^11-2856*x1^10-28392*x1^9+97656*x1^8-81096*x1^7-170688*x1^6+513856*x1^5-601216*x1^4+380800*x1^3-129024*x1^2+18432*x1);
23fglmquot(j,q);
24
25tst_status(1);$
Note: See TracBrowser for help on using the repository browser.