Skip to content

Improve mpoly context interface #225

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

Merged
merged 11 commits into from
Sep 15, 2024
8 changes: 4 additions & 4 deletions src/flint/flint_base/flint_base.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ cdef class flint_mpoly_context(flint_elem):
cdef public object py_names
cdef const char ** c_names

cdef class flint_mod_mpoly_context(flint_mpoly_context):
cdef readonly bint __prime_modulus

cdef class flint_mpoly(flint_elem):
cdef _add_scalar_(self, other)
cdef _sub_scalar_(self, other)
Expand Down Expand Up @@ -54,8 +57,5 @@ cdef class flint_mat(flint_elem):
cdef class flint_series(flint_elem):
pass

cpdef enum Ordering:
lex, deglex, degrevlex

cdef ordering_t ordering_py_to_c(ordering: Ordering)
cdef ordering_t ordering_py_to_c(ordering)
cdef ordering_c_to_py(ordering_t ordering)
Loading
Loading