"Source: Text/Group/GrpFPInt.text";
"Line: 3002";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Group/GrpFPInt.text, line: 3002
// Example: H79E38 ()
print "Example: H79E38";
ei := GetEchoInput();
SetEchoInput(true);
G := FPGroup<a, b, c | a^13, b^3, c^2,a = b*c>;
IsPerfect(G);
assert $1;
L := SimpleQuotients(G, 1, 100, 2, 10^5 : Limit := 2);
#L;
assert $1 eq 2;
for x in L do CompositionFactors(Image(x[1])); end for;
L[2,1];
#L[2];
assert $1 eq 2;
P := SimpleQuotientProcess(G, 1, 100, 2, 10^6 : Family:="PSU");  
IsEmptySimpleQuotientProcess(P);
assert not $1;
eps, info := SimpleEpimorphisms(P);
info;
NextSimpleQuotient(~P);
IsEmptySimpleQuotientProcess(P);
assert $1;
SetEchoInput(ei);
