From 1ed4f64c4d86bf87c05a062570f956f7847cf17b Mon Sep 17 00:00:00 2001 From: Alexander Hulpke Date: Tue, 1 Jan 2019 15:08:07 +0200 Subject: [PATCH] REBASE: Subsequent manual changes --- lib/grp.gd | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/grp.gd b/lib/grp.gd index 8f789025f7..baec2a59d3 100644 --- a/lib/grp.gd +++ b/lib/grp.gd @@ -1,7 +1,8 @@ ############################################################################# ## ## This file is part of GAP, a system for computational discrete algebra. -## This files's authors include Thomas Breuer, Frank Celler, Bettina Eick, Heiko Theißen. +## This files's authors include Thomas Breuer, Frank Celler, Bettina Eick, +## Heiko Theißen. ## ## Copyright of GAP belongs to its developers, whose names are too numerous ## to list here. Please refer to the COPYRIGHT file for details. @@ -1875,8 +1876,8 @@ DeclareAttribute( "MinimalNormalSubgroups", IsGroup ); ## returns a list of all normal subgroups of G. ## g:=SymmetricGroup(4);;NormalSubgroups(g); -## [ Sym( [ 1 .. 4 ] ), Alt( [ 1 .. 4 ] ), Group([ (1,4)(2,3), (1,2) -## (3,4) ]), Group(()) ] +## [ Sym( [ 1 .. 4 ] ), Alt( [ 1 .. 4 ] ), Group([ (1,4)(2,3), (1,3) +## (2,4) ]), Group(()) ] ## ]]> ##

## The algorithm for the computation of normal subgroups is described in @@ -3232,7 +3233,7 @@ DeclareOperation("CentralizerModulo", [IsGroup,IsGroup,IsObject]); ## [ , Group([ y3, y*y3 ]), Group([ y*y3 ]) ] ## gap> g:=SymmetricGroup(4);; ## gap> PCentralSeries(g,2); -## [ Sym( [ 1 .. 4 ] ), Group([ (1,2,3), (1,3,4) ]) ] +## [ Sym( [ 1 .. 4 ] ), Group([ (1,2,3), (2,3,4) ]) ] ## ]]> ## ##