From 8fad775d2050ae5b3248e2031f64330fbb7be88f Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 2 Aug 2026 01:31:46 +0200 Subject: [PATCH] Do not print generators in a manual example The example for UpperFittingSeries and LowerFittingSeries printed the results, which includes generating set chosen for some of the terms. But these can vary depending on the GAP version and which packages are loaded. Since we print the structure descriptions of these groups right afterwards anyway, it should be fine to just not print the terms of these series. See https://github.com/gap-system/gap/issues/2434 Co-Authored-By: Claude Opus 5 --- doc/groups.xml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/doc/groups.xml b/doc/groups.xml index f23254a..4516218 100644 --- a/doc/groups.xml +++ b/doc/groups.xml @@ -121,15 +121,11 @@ gap> List( low, StructureDescription ); gap> FittingLength( D12 ); 2 gap> S4 := SymmetricGroup( 4 );; -gap> UpperFittingSeries( S4 ); -[ Group(()), Group([ (1,2)(3,4), (1,4)(2,3) ]), - Group([ (2,4,3), (1,2)(3,4) ]), Group([ (3,4), (2,4,3), (1,2)(3,4) ]) ] +gap> UpperFittingSeries( S4 );; gap> List( last, StructureDescription ); [ "1", "C2 x C2", "A4", "S4" ] -gap> LowerFittingSeries( S4 ); -[ Sym( [ 1 .. 4 ] ), Alt( [ 1 .. 4 ] ), Group([ (1,4)(2,3), (1,2)(3,4) ]), - Group(()) ] -gap> List( last, StructureDescription ); +gap> ser := LowerFittingSeries( S4 );; +gap> List( ser, StructureDescription ); [ "S4", "A4", "C2 x C2", "1" ] gap> FittingLength( S4); 3