source: git/Tst/Short/bug_31.tst @ d4b25e

spielwiese
Last change on this file since d4b25e was a915285, checked in by Martin Lee <martinlee84@…>, 11 years ago
fix: minpoly directly after ring declaration
  • Property mode set to 100644
File size: 309 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring R2=(0,a),(x,y,z),lp;
5minpoly=a3+a+1;
6poly f=x4y+xy4;
7factorize(f);
8//
9ring R3=(2,a),(x,y),lp;
10minpoly=a2+a+1;
11poly g=x2+xy+y2;
12factorize(g);
13g=g+y3;
14factorize(g);
15
16//
17ring R4=2,(x,y,z),dp;
18ideal I=x2-z,y2-z;
19LIB"primdec.lib";
20factorize(x2-z);
21primdecSY(I);
22//
23tst_status(1);$
Note: See TracBrowser for help on using the repository browser.