source: git/Tst/Manual/createQuotientGroup.tst @ ef52d6

spielwiese
Last change on this file since ef52d6 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: 333 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "multigrading.lib";
3intmat I[3][3] =
41, 0, 0,
50, 1, 0,
60, 0, 1;
7intmat L[3][2] =
81, 1,
91, 3,
101, 5;
11// The group Z^3 / L can be constructed as follows:
12// shortcut:
13def G = createQuotientGroup(L);
14printGroup(G);
15// the general way:
16def GG = createGroup(I, L); // (I+L)/L
17printGroup(GG);
18tst_status(1);$
Note: See TracBrowser for help on using the repository browser.