source: git/Tst/Short/bug_tr753.tst @ 57f6ffd

fieker-DuValspielwiese
Last change on this file since 57f6ffd was a934fb3, checked in by Hans Schoenemann <hannes@…>, 8 years ago
fix: tr. #753 (non-commutative imap)
  • Property mode set to 100644
File size: 289 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// non-commutative imap
5
6ring R = 0,(x,z),dp;
7def r = nc_algebra(1,-1);
8setring r;
9basering;
10poly h = x3z2-2x2z+x2;
11h;
12ring R2 = 0,(z,x),dp;
13def r2 = nc_algebra(1,1);
14setring r2;
15basering;
16poly h = imap(r,h);
17h;
18map M=r,x,z;
19M(h);
20M(h)-h; // 0
21
22tst_status(1);$
Note: See TracBrowser for help on using the repository browser.