-
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.
gprd.gi: fix assertion in PrimePGroup
Resolves #1719
- Loading branch information
1 parent
277cf32
commit 6e7b104
Showing
2 changed files
with
17 additions
and
5 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,11 @@ | ||
# Issue related to PrimePGroup for filter IsPGroup and HasDirectProductInfo | ||
# Examples reported on issue #1719 on github.com/gap-system/gap | ||
# | ||
gap> level := AssertionLevel();; | ||
gap> SetAssertionLevel(1); | ||
gap> G := CyclicGroup(IsPcGroup, 5);; | ||
gap> H := Range(IsomorphismPermGroup(G)); | ||
Group([ (1,2,3,4,5) ]) | ||
gap> PrimePGroup(H); | ||
5 | ||
gap> SetAssertionLevel(level);; |