source: git/Tst/Plural/mult_skew1.tst @ 48d7c96

spielwiese
Last change on this file since 48d7c96 was 48d7c96, checked in by Viktor Levandovskyy <levandov@…>, 21 years ago
revised tests git-svn-id: file:///usr/local/Singular/svn/trunk@6648 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100755
File size: 390 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;
8system("PLURAL",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.