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.
Fixes #38888 .
This test has been failing sporadically recently e.g. https://github.com/sagemath/sage/actions/runs/11733902583/job/32689016794?pr=38938 .
From my understanding of simplicial set, the two
sigma_1
are actually representing two different cells (the wedge looks like a "8" shape), but because they both come fromS1
(the 1-sphere i.e. circle), they get the same name.SageMath does some magic during doctest so that dict entries are sorted, but the problem is
so with some chance it fails.
This change should make it deterministic --- since the two faces are named
sigma_1
andsigma_1'
, the comparison should be by custom name…?📝 Checklist