1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//! Polynomial structs //! //! [`Polynomial`] - Struct representing a polynomial, enhanced with [`AdicInteger`](crate::AdicInteger) or [`QAdic`](crate::QAdic) coefficients mod euclid; mod factorization; mod newton_polygon; mod ops; mod polynomial; mod polynomial_adic; mod zadic_wrapper; pub use polynomial::Polynomial; pub (crate) use newton_polygon::NewtonPolygon; #[cfg(test)] mod test; #[cfg(test)] mod test_adic;