"Source: Text/Group/GrpData.text";
"Line: 1123";
"Date: Mon May 16 10:58:19 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Group/GrpData.text, line: 1123
// Example: H72E6 ()
print "Example: H72E6";
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);
