We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ff967 commit 4cb404fCopy full SHA for 4cb404f
src/flint/flint_base/flint_base.pyx
@@ -255,10 +255,10 @@ cdef class flint_poly(flint_elem):
255
return roots
256
257
def real_roots(self):
258
- raise AttributeError("Real roots are not supported for this polynomial")
+ raise NotImplementedError("Real roots are not supported for this polynomial")
259
260
def complex_roots(self):
261
- raise AttributeError("Complex roots are not supported for this polynomial")
+ raise NotImplementedError("Complex roots are not supported for this polynomial")
262
263
264
cdef class flint_mpoly_context(flint_elem):
0 commit comments