Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in IsomorphismPermGroup #637

Closed
james-d-mitchell opened this issue Jan 10, 2020 · 3 comments
Closed

Bug in IsomorphismPermGroup #637

james-d-mitchell opened this issue Jan 10, 2020 · 3 comments
Labels
bug Label for issues or PR which report or fix bugs resolved-pending-release A label for issues that are resolved pending a release.

Comments

@james-d-mitchell
Copy link
Collaborator

I get the following:

gap> H := HClass(FullTransformationMonoid(4), Transformation([2, 2, 2]));
<Green's H-class: Transformation( [ 2, 2, 2 ] )>
gap> map := IsomorphismPermGroup(H);
MappingByFunction( <Green's H-class: Transformation( [ 2, 2, 2 ] )>, Group(
[ (2,4) ]), function( x ) ... end, function( x ) ... end )
gap> p :=Transformation( [ 2, 2, 2, 2 ] ) ^ map;

gap> OnTuples([1 .. 10], p);
[ 1, 2, 3, 2, 5, 6, 7, 8, 9, 10 ]

The issue is that Transformation( [ 2, 2, 2, 2] ) does not belong to the domain of map but this is not checked.

@james-d-mitchell james-d-mitchell added the bug Label for issues or PR which report or fix bugs label Jan 10, 2020
@james-d-mitchell
Copy link
Collaborator Author

Thanks to @ZoltanCoccyx for pointing this out.

@james-d-mitchell
Copy link
Collaborator Author

Another related bug is the following:

H := HClass(FullTransformationMonoid(4), Transformation([3, 1, 2, 3]));
map := IsomorphismPermGroup(H);
BruteForceIsoCheck(map);
Transformation( [ 3, 1, 2, 3 ] ) Transformation( [ 3, 1, 2, 3 ] )
false

@james-d-mitchell james-d-mitchell added close-on-minor-release resolved-pending-release A label for issues that are resolved pending a release. labels Jan 11, 2020
@james-d-mitchell
Copy link
Collaborator Author

Resolved in v3.2.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Label for issues or PR which report or fix bugs resolved-pending-release A label for issues that are resolved pending a release.
Projects
None yet
Development

No branches or pull requests

1 participant