We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
With version 2.16, I'm getting
gap> AddToIgs([],m); [ g1, g2, g3 ]
instead. The difference is likely due to #43.
Sorry, something went wrong.
No branches or pull requests
From an error report by Graham Ellis on 3/26/21, the issue ultimately is:
It seems that the new IGS code given in #51 would resolve the issue.
The text was updated successfully, but these errors were encountered: