-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure subgroup is tested at least once,
in finding induced permutation representation of FpGroup, even if max parameter was increased in between. This resolves #5697
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
tst/testbugfix/2024-05-06-IsomorphismPermGroupOrFailFpGroup.tst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Verify regression in IsomorphismPermGroupOrFailFpGroup is | ||
# resolved, see <https://github.com/gap-system/gap/issues/5697> | ||
gap> F:= FreeGroup(2); | ||
<free group on the generators [ f1, f2 ]> | ||
gap> gens:= GeneratorsOfGroup( F ); | ||
[ f1, f2 ] | ||
gap> x:= gens[1];; y:= gens[2];; | ||
gap> rels:= [ y*x^-1*y^-1*x*y^-1*x^-1, x^-1*y*x*y*x^-1*y^-2 ];; | ||
gap> G:= F / rels; | ||
<fp group on the generators [ f1, f2 ]> | ||
gap> IsomorphismPermGroupOrFailFpGroup(G, 100000) <> fail; | ||
true |