source: git/Tst/Manual/intersect_BR_PLURAL_BR.tst @ 951db29

spielwiese
Last change on this file since 951db29 was 894057, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: Tests from online manual (res+stat on mamawutz): short ones Tst/Manual/s.lst
  • Property mode set to 100644
File size: 427 bytes
Line 
1LIB "tst.lib"; tst_init();
2ring r=0,(x,y),dp;
3def R=nc_algebra(-1,0);  //anti-commutative algebra
4setring R;
5module M=[x,x],[y,0];
6module N=[0,y^2],[y,x];
7option(redSB);
8module Res;
9Res=intersect(M,N);
10print(Res);
11kill r,R;
12//--------------------------------
13LIB "ncalg.lib";
14ring r=0,(x,d),dp;
15def RR=Weyl(); // make r into Weyl algebra
16setring RR;
17ideal I = x+d^2;
18ideal J = d-1;
19ideal H = intersect(I,J);
20H;
21tst_status(1);$
Note: See TracBrowser for help on using the repository browser.