-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Overlooked case for cyclic MTC (#5532)
When rewriting to cyclic subgroup words are just numbers, not lists. Thus concatenation needs to be replaced by addition. This was overlooked in one case. Co-authored-by: Alexander Hulpke <hulpke@math.colostate.edu>
- Loading branch information
Showing
2 changed files
with
13 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,7 @@ | ||
# Fix unexpected error in GQuotients. | ||
# See https://github.com/gap-system/gap/issues/5525 | ||
# | ||
gap> G := FreeGroup(2);; | ||
gap> Q := G / [G.1*G.2^-2*G.1, G.1^-1*G.2^-3];; | ||
gap> GQuotients(Q, SmallGroup(12, 1)); | ||
[ ] |