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

Wrong Igs computed in abelian group #56

Open
hulpke opened this issue Mar 26, 2021 · 1 comment
Open

Wrong Igs computed in abelian group #56

hulpke opened this issue Mar 26, 2021 · 1 comment

Comments

@hulpke
Copy link

hulpke commented Mar 26, 2021

From an error report by Graham Ellis on 3/26/21, the issue ultimately is:

gap> A:=AbelianPcpGroup([3,2,12]);;
gap> m:=MinimalGeneratingSet(A);
[ g1^2*g2, g3 ]
gap> AddToIgs([],m);   # wrong, currently used
[ g1, g3 ]
gap> AddToIgs_Old([],m); # correct, not used
[ g1^2*g2, g2, g3 ]

It seems that the new IGS code given in #51 would resolve the issue.

@stertooy
Copy link
Contributor

With version 2.16, I'm getting

gap> AddToIgs([],m);
[ g1, g2, g3 ]

instead. The difference is likely due to #43.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants