-
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.
ENHANCE: Special redispatch for Nat.Hom.ByNS if group is found out to…
… be finite This is needed, as for matrix groups the earlier `NiceMonomorphism` dispatch does not hold. Test is only done before expesive action search is started, so negligible cost. Also added redispatches in case the NiceMonomorphism approach is ever removed. This fixes #3070 Added testfile
- Loading branch information
1 parent
3696035
commit 8b1ff24
Showing
2 changed files
with
23 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
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,5 @@ | ||
# Reported in github PR 3070 | ||
# Degenerate example where the subgroup can be formed without finiteness test (as the group | ||
# is cyclic). | ||
gap> G := Group([[[E(3),0,0],[0,E(3),0],[0,0,E(3)]],[[1,0,0],[0,0,1],[0,1,0]]]);; | ||
gap> FactorGroup(G,Center(G));; |