source: git/Tst/Plural/AnnFD-sl2-10.tst @ c23373

fieker-DuValspielwiese
Last change on this file since c23373 was 4689d0, checked in by Hans Schoenemann <hannes@…>, 3 years ago
rename poly.lib to polylib.lib
  • Property mode set to 100644
File size: 322 bytes
Line 
1LIB "tst.lib";
2tst_init();
3ring r=0,(x,y,z),dp;
4matrix d[3][3];
5d[1,2]=-z;
6d[1,3]=2x;
7d[2,3]=-2y;
8def S=nc_algebra(1,d);setring S;
9int N=10;
10poly f=1;
11for(int n=0;n<=N;n++)
12{
13  f=f*(z+N-2*n);
14}
15f;
16ideal i=x^(N+1),y^(N+1),f;
17ideal k=std(i);
18k;
19option(redSB);
20option(redTail);
21ideal J=system("twostd",i);
22J;
23tst_status(1);$
Note: See TracBrowser for help on using the repository browser.