Ensure returned degree of multivariate polynomial is type Integer
for MPolynomialRing_libsingular
class
#37605
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.
Previously the degree of multivariate polynomials was returned as a python
int
instead of a SageMathInteger
resulting in uglyZZ(f.degree())
calls in various places.This PR only focuses on the case of
MPolynomialRing_libsingular
to keep the noise of the PR as low as possible.Future work: This same issue is in
MPolynomial_polydict
, I am happy to also do the work here, or make a new PR -- really I don't like sage returning aint
when we dont have to.Edit
This follow up work has been done in PR: #37611