pub trait PolynomialReducingFactorSupported: PolynomialCoefficient {
    fn get_nonzero_reducing_factor(
        elements: &[Self::Element],
        divisor: &Self::Divisor
    ) -> Option<Self>; }

Required methods

returns the factor f of the passed in polynomial p where p / f is content-free (for integer polynomials) or monic (for polynomials over fields).

Implementations on Foreign Types

Implementors