source: git/Tst/Manual/createGroup.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: 548 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "multigrading.lib";
3intmat S[3][3] =
41, 0, 0,
50, 1, 0,
60, 0, 1;
7intmat L[3][2] =
81, 1,
91, 3,
101, 5;
11def G = createGroup(S, L); // (S+L)/L
12printGroup(G);
13kill S, L, G;
14/////////////////////////////////////////////////
15intmat S[2][3] =
161, -2, 1,
171,  1, 0;
18intmat L[2][1] =
190,
202;
21def G = createGroup(S, L); // (S+L)/L
22printGroup(G);
23kill S, L, G;
24// ----------- extreme case ------------ //
25intmat S[1][3] =
261,  -1, 10;
27// Torsion:
28intmat L[1][1] =
290;
30def G = createGroup(S, L); // (S+L)/L
31printGroup(G);
32tst_status(1);$
Note: See TracBrowser for help on using the repository browser.