-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for IsomorphismFpGroup for perm groups (#5831)
This fixes a bug reported to me by Andries Brouwer on 10/31/24 A homomorphism is created in a way that does not enforce it to be onto.
- Loading branch information
Showing
2 changed files
with
9 additions
and
1 deletion.
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
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,8 @@ | ||
# Fix for bug in IsomorphismFp | ||
# reported by Andries Brouwer, 10/31/24 | ||
|
||
gap> G:=PSL(3,7);; | ||
gap> maxes := MaximalSubgroupClassReps(G);; | ||
gap> maxes1 := MaximalSubgroupClassReps(maxes[1]);; | ||
gap> maxes12:= maxes1[2];; | ||
gap> StructureDescription(maxes12:short);; # used to trigger an error |