"Source: Text/Group/GrpData.text";
"Line: 1124";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Group/GrpData.text, line: 1124
// Example: H73E6 ()
print "Example: H73E6";
ei := GetEchoInput();
SetEchoInput(true);
time Q := SearchPGroups(19, 7:Rank := 5, Class := 3, 
   Select := func<G|IsPrime(Exponent(G))> );
#Q;
assert $1 eq 4;
Q[1];
time    Q := SearchPGroups(19, 7:Rank := 4, Class := {3,4}, 
   Select := func<G|IsPrime(Exponent(G))>, Limit := 5);
#Q;
assert $1 eq 5;
[pClass(G):G in Q];
time    Q4 := SearchPGroups(19, 7:Rank := 4, Class := 4,    
  Select := func<G|IsPrime(Exponent(G))>, Limit := 5);
#Q4;
assert $1 eq 6;
time CountPGroups(19, 7:Rank := 4, Class := {3,4},
  Select := func<G|IsPrime(Exponent(G))>);
time CountPGroups(19, 7:Rank := 4, Class := 4,
   Select := func<G|IsPrime(Exponent(G))>);
assert $1 eq 10;
SetEchoInput(ei);
