source: git/Tst/Plural/mult_skew1.tst @ e670d00

spielwiese
Last change on this file since e670d00 was e670d00, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: system(PLURAL) ->ncalgebra git-svn-id: file:///usr/local/Singular/svn/trunk@9595 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100755
File size: 384 bytes
Line 
1LIB "tst.lib";
2tst_init();
3ring r=(0,q1,q2,q3),(x,y,z),Dp;
4matrix C[3][3];
5C[1,2]=q1;
6C[1,3]=q2;
7C[2,3]=q3;
8ncalgebra(C,0);
9int N=15;
10poly f;
11poly g;
12int i;
13int j;
14int k;
15for(i=1;i<=N;i++)
16{
17  for(j=1;j<=N;j++)
18  {
19    for(k=1;k<=N;k++)
20    {
21       f=(z^k*y^j)*x^i;
22       g=z^k*(y^j*x^i);
23       g=g-f;
24       if (g!=0) {"Fail";i;j;k;f;}
25    }
26  } 
27}
28z^7*y^6*x^5;
29tst_status(1);$
Note: See TracBrowser for help on using the repository browser.