Home Online Manual
Top
Back: createTorsionFreeGroup
Forward: isGroup
FastBack:
FastForward:
Up: multigrading_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.15.11.8 printGroup

Procedure from library multigrading.lib (see multigrading_lib).

Usage:
printGroup(G); G is a group

Purpose:
prints the group G

Return:
nothing

Example:
 
LIB "multigrading.lib";
intmat S[3][3] =
1, 0, 0,
0, 1, 0,
0, 0, 1;
intmat L[3][2] =
1, 1,
1, 3,
1, 5;
def G = createGroup(S, L); // (S+L)/L
printGroup(G);
==> Generators: 
==>      1     0     0
==>      0     1     0
==>      0     0     1
==> Relations: 
==>      1     1
==>      1     3
==>      1     5