Fix forced-orbit stabilization in AutomGrpSR - #6542
Merged
Merged
Conversation
When a someCharacteristics orbit pair lies in two orbits of the acting
automorphism group, the code appended the orbit of the first subgroup a
second time instead of the orbit of the second one. The position of the
second subgroup thus stayed `fail`, and the duplicated orbit list broke
the subsequent action homomorphism ("Action not well-defined").
The hook is reached via PatheticIsomorphism, which passes pairs of
matched characteristic subgroups as orbits; for non-isomorphic groups
such a pair need not lie in a single orbit. Found while investigating
issue #6537, but independent of it.
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6542 +/- ##
=======================================
Coverage 78.98% 78.98%
=======================================
Files 684 684
Lines 294205 294205
Branches 8647 8647
=======================================
+ Hits 232369 232370 +1
+ Misses 60028 60027 -1
Partials 1808 1808 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
hulpke
approved these changes
Aug 30, 2026
hulpke
left a comment
Contributor
There was a problem hiding this comment.
Yes, this is indeed what was needed here, unclear why the wrongly copied index never showed up in any test.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a
someCharacteristicsorbit pair lies in two orbits of the acting automorphism group, the code appended the orbit of the first subgroup a second time instead of the orbit of the second one. The position of the second subgroup thus stayedfail, and the duplicated orbit list broke the subsequent action homomorphism ("Action not well-defined").The hook is reached via
PatheticIsomorphism, which passes pairs of matched characteristic subgroups as orbits; for non-isomorphic groups such a pair need not lie in a single orbit. Found while investigating issue #6537, but independent of it.Co-authored-by: Claude Fable 5 noreply@anthropic.com