-
-
Notifications
You must be signed in to change notification settings - Fork 482
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
support factoring polynomials modulo prime powers #34371
Comments
Reviewer: Travis Scrimshaw |
comment:2
It probably would be too much trouble to separate out the algorithm into a separate function rather than converting the elements by changing the base ring. If it is actually simple, then please do so. Otherwise, green bot => positive review. |
comment:3
The implementation for Personally I'd argue that this is an easy way to make something work that didn't work previously, and we can improve the performance later if it turns out to be a problem. |
comment:4
Replying to @yyyyx4:
It also means you get an additional transient object that takes up time and memory, which could matter if the polynomial is "big". However...
I agree fully. Only to be done if it was clearly easy. |
Changed branch from public/polynomial_factorization_modulo_prime_powers to |
Currently,
Polynomial_zmod_flint
refuses to factor polynomials modulo composites, which is generally not well-defined. However, we can easily make this work modulo prime powers (where it is well-defined) by reusing the implementation for polynomials over p‑adics. This is almost certainly not the fastest way of doing it, but at least it works.Component: algebra
Author: Lorenz Panny
Branch/Commit:
19018bb
Reviewer: Travis Scrimshaw
Issue created by migration from https://trac.sagemath.org/ticket/34371
The text was updated successfully, but these errors were encountered: