Package edu.jas.fd

Interface GreatestCommonDivisor<C extends GcdRingElem<C>>

    • Method Detail

      • leftCoPrime

        java.util.List<GenSolvablePolynomial<C>> leftCoPrime​(java.util.List<GenSolvablePolynomial<C>> A)
        GenSolvablePolynomial left co-prime list.
        Parameters:
        A - list of GenSolvablePolynomials.
        Returns:
        B with leftGcd(b,c) = 1 for all b != c in B and for all non-constant a in A there exists b in B with b|a. B does not contain zero or constant polynomials.
      • isLeftCoPrime

        boolean isLeftCoPrime​(java.util.List<GenSolvablePolynomial<C>> A)
        GenSolvablePolynomial test for left co-prime list.
        Parameters:
        A - list of GenSolvablePolynomials.
        Returns:
        true if leftGcd(b,c) = 1 for all b != c in B, else false.