-
-
Notifications
You must be signed in to change notification settings - Fork 559
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
Resultant for polynomials over RDF and CDF not implemented #10978
Comments
comment:1
I think I've tracked down the issue after some digging. From rings/polynomial/polynomial_singular_interface.py/, class Polynomial_singular_repr: This appears to be a Cython multiple inheritance issue - polynomials over RDF and CDF are examples of the Polynomial_generic_field, which are subclasses of Polynomial_singular_repr. The .resultant() method there fails for these objects but the .resultant() method of the Polynomial parent class (which does work) gets skipped overdue to the multiple inheritance issue. As such, this should be fixed in an upcoming version of Cython. |
comment:4
Replying to @haikona:
The issue is unchanged 3 years later. |
comment:7
duplicate of #2693 |
Reviewer: Bruno Grenet |
comment:8
I confirm the duplication, and the described behavior changed after #2693. |
Changed author from Simon Spicer to none |
Calling the resultant method for a polynomial defined over RDF or CDF returns a NotImplementedError. It would appear that this results from it not being implemented in Singular.
Component: algebra
Keywords: polynomial, resultant
Reviewer: Bruno Grenet
Issue created by migration from https://trac.sagemath.org/ticket/10978
The text was updated successfully, but these errors were encountered: