-
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.
Added more specialised function for testing conjugacy of subgroups of Sn
Moved tst file to right location Added comments in testfile Changed comments Changed result for PerfectResiduum
- Loading branch information
Dominik Bernhardt
committed
Jan 25, 2019
1 parent
2acdb15
commit 0f16ee0
Showing
3 changed files
with
29 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
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,14 @@ | ||
# The following two test use the new version for natural symmetric group | ||
|
||
gap> IsConjugate( SymmetricGroup(5), Group((1,2)), Group((3,4))); | ||
true | ||
gap> IsConjugate( SymmetricGroup(5), Group((1,2)), Group((3,4,5))); | ||
false | ||
|
||
# This runs into the TryNextMethod case | ||
gap> IsConjugate( SymmetricGroup(200),PrimitiveGroup(200,4), PrimitiveGroup(200,3)); | ||
false | ||
|
||
# Here, using SubgpConjSymmgp yields a significant speedup | ||
gap> IsConjugate(SymmetricGroup(250),Group([ (1,5,9,7)(2,3)(4,8,6,10), (1,9)(5,7)(8,10), (1,9)(8,10) ]), Group([ (1,3)(2,8,10)(4,6)(5,11,7,9), (2,8)(9,11), (1,3)(4,6)(5,9,7,11)(8,10) ])); | ||
false |