We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96fa8e6 commit 59bce43Copy full SHA for 59bce43
2 files changed
src/flint/flint_base/flint_base.pxd
@@ -22,9 +22,6 @@ cdef class flint_mat(flint_elem):
22
cdef class flint_series(flint_elem):
23
pass
24
25
-cdef class flint_rational_function(flint_elem):
26
- pass
27
-
28
cpdef enum Ordering:
29
lex, deglex, degrevlex
30
src/flint/flint_base/flint_base.pyx
@@ -316,10 +316,6 @@ cdef class flint_mat(flint_elem):
316
tolist = table
317
318
319
320
321
322
323
cdef ordering_t ordering_py_to_c(ordering): # Cython does not like an "Ordering" type hint here
324
if not isinstance(ordering, Ordering):
325
raise TypeError(f"`ordering` ('{ordering}') is not an instance of flint.Ordering")
0 commit comments