This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'skew_polynomial_finite_field' into skew_polynomial_fini…
…te_field_rc0
- Loading branch information
Showing
5 changed files
with
1,256 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/sage/rings/polynomial/skew_polynomial_finite_field.pxd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from sage.rings.polynomial.skew_polynomial_finite_order cimport SkewPolynomial_finite_order_dense | ||
from sage.matrix.matrix_dense cimport Matrix_dense | ||
|
||
cdef class SkewPolynomial_finite_field_dense (SkewPolynomial_finite_order_dense): | ||
cdef _norm_factor | ||
cdef dict _rdivisors | ||
cdef dict _types | ||
cdef _factorization | ||
|
||
# Finding divisors | ||
cdef SkewPolynomial_finite_field_dense _rdivisor_c(P, N) | ||
|
||
# Finding factorizations | ||
cdef _factor_c(self) | ||
cdef _factor_uniform_c(self) |
Oops, something went wrong.