Skip to content

Commit

Permalink
Fix tests with GAP master
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jan 27, 2022
1 parent 2fe28bc commit 1496851
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/examples.tex
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@

\beginexample
gap> SetInfoACELevel(3); # So we can see the progress messages
gap> G := PerfectGroup(2^5*60, 2);;# See previous example:
gap> G := PerfectGroup(IsSubgroupFpGroup,2^5*60, 2);;# See previous example:
gap> # "Example where ACE is made the
gap> # Standard Coset Enumerator"
gap> fgens := FreeGeneratorsOfFpGroup(G);;
Expand Down
2 changes: 1 addition & 1 deletion examples/perf602p5
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# default strategy.
#
local G, fgens;
G := PerfectGroup(2^5*60, 2);
G := PerfectGroup(IsSubgroupFpGroup, 2^5*60, 2);
fgens := FreeGeneratorsOfFpGroup(G);
return ACEfunc(
# arguments
Expand Down
2 changes: 1 addition & 1 deletion tst/aceds.tst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
##

gap> START_TEST( "Testing ACEDeleteSubgroupGenerators with bad input" );
gap> G := PerfectGroup( 2^5*60, 2 );
gap> G := PerfectGroup( IsSubgroupFpGroup, 2^5*60, 2 );
A5 2^4 E N 2^1
gap> F := FreeGroupOfFpGroup( G );
<free group on the generators [ a, b, s, t, u, v, d ]>
Expand Down

0 comments on commit 1496851

Please sign in to comment.