-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix unexpected error in
ConjugacyClassesSubgroups
This disables an attempt to use cyclic extension instead of lifting for lattices of smallish groups. The issue is that CE returns data in a slightly different format than required. This resulted in some commands, e.g. `ConjugacyClassesSubgroups(SmallGroup(1344,11293))`, to enter a break loop. If tomlib is loded it's a mote issue, and thus does not merit further investigation. This resolves #4854
- Loading branch information
Showing
2 changed files
with
13 additions
and
4 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 @@ | ||
# The following used to work in GAP 4.10, but was broken in GAP | ||
# 4.11.x and also 4.12.0. | ||
# See /~https://github.com/gap-system/gap/issues/4854 | ||
gap> Length(ConjugacyClassesSubgroups(SmallGroup(1344,11293))); | ||
83 |