-
-
Notifications
You must be signed in to change notification settings - Fork 589
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
Method word_problem
of PermutationGroupElement
is severely broken
#36419
Comments
please make a pull request |
and check before the situation with the latest version of sage (10.2.beta8) |
@fchapoton Thank you for your reply! I'm planning to make a pull request, but first I have to know your policy on backward compatibility. As I already mentioned in the issue, I want to change the string representation of the elements in the list to an index representation because I think that would greatly improve the usefulness of the method. Is such a breaking change likely to be accepted or do you require 100% backward compatibility? |
We have a standard deprecation policy : one year after the first stable release containing the merge request. I suggest to add your code as the new default algorithm and keep the old code as an optional algorithm, with deprecation. |
Hello @fchapoton, i think i have fixed this issue, basically what i have done is I’ve introduced a syllable-based algorithm while keeping the legacy string-parsing method for backward compatibility: i have added the algorithm parameter with two options:
|
This replaces the fragile string parsing in PermutationGroupElement.word_problem with a stable method using GAP's syllable functions (NumberSyllables, GeneratorSyllable, ExponentSyllable). This resolves parsing errors involving parentheses and generator name conflicts (e.g., x10 vs x1). Introduces an 'algorithm' parameter: - 'syllable' (Now default): Returns 1-based generator indices when as_list=True. - 'legacy': Old implementation, preserved for testing but deprecated due to known bugs. Returns generator strings when as_list=True. Updated docstrings and examples accordingly. Fixes sagemath#36419 Related: sagemath#28556
This replaces the fragile string parsing in PermutationGroupElement.word_problem with a stable method using GAP's syllable functions (NumberSyllables, GeneratorSyllable, ExponentSyllable). This resolves parsing errors involving parentheses and generator name conflicts (e.g., x10 vs x1). Introduces an 'algorithm' parameter: - 'syllable' (Now default): Returns 1-based generator indices when as_list=True. - 'legacy': Old implementation, preserved for testing but deprecated due to known bugs. Returns generator strings when as_list=True. Updated docstrings and examples accordingly. Fixes sagemath#36419 Related: sagemath#28556
This replaces the fragile string parsing in PermutationGroupElement.word_problem with a stable method using GAP's syllable functions (NumberSyllables, GeneratorSyllable, ExponentSyllable). This resolves parsing errors involving parentheses and generator name conflicts (e.g., x10 vs x1). Introduces an 'algorithm' parameter: - 'syllable' (Now default): Returns 1-based generator indices when as_list=True. - 'legacy': Old implementation, preserved for testing but deprecated due to known bugs. Returns generator strings when as_list=True. Updated docstrings and examples accordingly. Fixes sagemath#36419 Related: sagemath#28556
This replaces the fragile string parsing in PermutationGroupElement.word_problem with a stable method using GAP's syllable functions (NumberSyllables, GeneratorSyllable, ExponentSyllable). This resolves parsing errors involving parentheses and generator name conflicts (e.g., x10 vs x1). Introduces an 'algorithm' parameter: - 'syllable' (Now default): Returns 1-based generator indices when as_list=True. - 'legacy': Old implementation, preserved for testing but deprecated due to known bugs. Returns generator strings when as_list=True. Updated docstrings and examples accordingly. Fixes sagemath#36419 Related: sagemath#28556
This replaces the fragile string parsing in PermutationGroupElement.word_problem with a stable method using GAP's syllable functions (NumberSyllables, GeneratorSyllable, ExponentSyllable). This resolves parsing errors involving parentheses and generator name conflicts (e.g., x10 vs x1). Introduces an 'algorithm' parameter: - 'syllable' (Now default): Returns 1-based generator indices when as_list=True. - 'legacy': Old implementation, preserved for testing but deprecated due to known bugs. Returns generator strings when as_list=True. Updated docstrings and examples accordingly. Fixes sagemath#36419 Related: sagemath#28556
This replaces the fragile string parsing in PermutationGroupElement.word_problem with a stable method using GAP's syllable functions (NumberSyllables, GeneratorSyllable, ExponentSyllable). This resolves parsing errors involving parentheses and generator name conflicts (e.g., x10 vs x1). Introduces an 'algorithm' parameter: - 'syllable' (Now default): Returns 1-based generator indices when as_list=True. - 'legacy': Old implementation, preserved for testing but deprecated due to known bugs. Returns generator strings when as_list=True. Updated docstrings and examples accordingly. Fixes sagemath#36419 Related: sagemath#28556
Steps To Reproduce
Take this code snippet as an example:
Expected Behavior
The string representation of the solution should match the list representation.
Actual Behavior
This is the output:
The third permutation of the list contains an excess parenthesis and the exponent of the fourth element is wrong. It seems like the method can't process the
(x2^-1*x1^-1)^2
part correctly.Additional Information
This bug has already been described here.
I also looked at the implementation of
word_problem
:sage/src/sage/groups/perm_gps/permgroup_element.pyx
Lines 2013 to 2047 in 1cf0c13
I hate to say it, but there's so much wrong with this: The code parses the string output of GAP instead of using built-in functions, which is already a bad idea. The parsing doesn't take into account that there can be parentheses in the output, which explains why my code produces wrong results.
Furthermore, the helper function
convert_back
is also very problematic. It replaces the variable identifiers contained in the string with their value, but does so by naive find and replace. This means that variables likex10
will also be partially replaced during the replacement ofx1
. The following code demonstrates that:Output:
The
L = copy.copy(string)
in line2017
is also unnecessary because strings are immutable in Python, but that's just a minor complaint.But I not only want to complain, so here's a draft of how I would implement it:
Note that this avoids parsing strings by using the built-in methods
NumberSyllables
,GeneratorSyllable
andExponentSyllable
. Also note that the list now contains the indices of the generators and not their string representations, which is much more useful to the user of the method.I would flesh this out to a working pull request, but first someone has to tell me whether (or how much) I'm allowed to break backward compatibility.
Environment
Checklist
The text was updated successfully, but these errors were encountered: