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 3154bb3 commit 8360ab5Copy full SHA for 8360ab5
src/sage/rings/finite_rings/finite_field_base.pyx
@@ -2185,14 +2185,7 @@ cdef class FiniteField(Field):
2185
L = K if ring is None else ring
2186
2187
if K != L:
2188
- try:
2189
- f_L = f.change_ring(L)
2190
- except (TypeError, ValueError):
2191
- if L.is_exact() and L.is_subring(K):
2192
- return f._roots_in_subring(L, multiplicities)
2193
- else:
2194
- raise NotImplementedError
2195
- return f_L.roots(multiplicities=multiplicities)
+ raise NotImplementedError
2196
2197
if multiplicities:
2198
return f._roots_from_factorization(f.factor(), multiplicities)
0 commit comments