Package edu.jas.gb

Interface SolvableGroebnerBase<C extends RingElem<C>>

    • Method Detail

      • isLeftGB

        boolean isLeftGB​(java.util.List<GenSolvablePolynomial<C>> F)
        Left Groebner base test.
        Parameters:
        F - solvable polynomial list.
        Returns:
        true, if F is a left Groebner base, else false.
      • isLeftGB

        boolean isLeftGB​(int modv,
                         java.util.List<GenSolvablePolynomial<C>> F)
        Left Groebner base test.
        Parameters:
        modv - number of module variables.
        F - solvable polynomial list.
        Returns:
        true, if F is a left Groebner base, else false.
      • isTwosidedGB

        boolean isTwosidedGB​(java.util.List<GenSolvablePolynomial<C>> Fp)
        Twosided Groebner base test.
        Parameters:
        Fp - solvable polynomial list.
        Returns:
        true, if Fp is a two-sided Groebner base, else false.
      • isTwosidedGB

        boolean isTwosidedGB​(int modv,
                             java.util.List<GenSolvablePolynomial<C>> Fp)
        Twosided Groebner base test.
        Parameters:
        modv - number of module variables.
        Fp - solvable polynomial list.
        Returns:
        true, if Fp is a two-sided Groebner base, else false.
      • isRightGB

        boolean isRightGB​(java.util.List<GenSolvablePolynomial<C>> F)
        Right Groebner base test.
        Parameters:
        F - solvable polynomial list.
        Returns:
        true, if F is a right Groebner base, else false.
      • isRightGB

        boolean isRightGB​(int modv,
                          java.util.List<GenSolvablePolynomial<C>> F)
        Right Groebner base test.
        Parameters:
        modv - number of module variables.
        F - solvable polynomial list.
        Returns:
        true, if F is a right Groebner base, else false.
      • leftGB

        java.util.List<GenSolvablePolynomial<C>> leftGB​(int modv,
                                                        java.util.List<GenSolvablePolynomial<C>> F)
        Left Groebner base using pairlist class.
        Parameters:
        modv - number of module variables.
        F - solvable polynomial list.
        Returns:
        leftGB(F) a left Groebner base of F.
      • extLeftGB

        SolvableExtendedGB<CextLeftGB​(java.util.List<GenSolvablePolynomial<C>> F)
        Solvable Extended Groebner base using critical pair class.
        Parameters:
        F - solvable polynomial list.
        Returns:
        a container for an extended left Groebner base of F.
      • extLeftGB

        SolvableExtendedGB<CextLeftGB​(int modv,
                                        java.util.List<GenSolvablePolynomial<C>> F)
        Solvable Extended Groebner base using critical pair class.
        Parameters:
        modv - module variable number.
        F - solvable polynomial list.
        Returns:
        a container for an extended left Groebner base of F.
      • twosidedGB

        java.util.List<GenSolvablePolynomial<C>> twosidedGB​(int modv,
                                                            java.util.List<GenSolvablePolynomial<C>> Fp)
        Twosided Groebner base using pairlist class.
        Parameters:
        modv - number of module variables.
        Fp - solvable polynomial list.
        Returns:
        tsGB(Fp) a twosided Groebner base of Fp.
      • rightGB

        java.util.List<GenSolvablePolynomial<C>> rightGB​(int modv,
                                                         java.util.List<GenSolvablePolynomial<C>> F)
        Right Groebner base using opposite ring left GB.
        Parameters:
        modv - number of module variables.
        F - solvable polynomial list.
        Returns:
        rightGB(F) a right Groebner base of F.
      • isLeftReductionMatrix

        boolean isLeftReductionMatrix​(SolvableExtendedGB<C> exgb)
        Test if left reduction matrix.
        Parameters:
        exgb - an SolvableExtendedGB container.
        Returns:
        true, if exgb contains a left reduction matrix, else false.
      • isLeftGB

        boolean isLeftGB​(ModuleList<C> M)
        Module left Groebner base test.
        Parameters:
        M - a module basis.
        Returns:
        true, if M is a left Groebner base, else false.
      • leftGB

        ModuleList<CleftGB​(ModuleList<C> M)
        Left Groebner base using pairlist class.
        Parameters:
        M - a module basis.
        Returns:
        leftGB(M) a left Groebner base for M.
      • isTwosidedGB

        boolean isTwosidedGB​(ModuleList<C> M)
        Module twosided Groebner base test.
        Parameters:
        M - a module basis.
        Returns:
        true, if M is a twosided Groebner base, else false.
      • twosidedGB

        ModuleList<CtwosidedGB​(ModuleList<C> M)
        Twosided Groebner base using pairlist class.
        Parameters:
        M - a module basis.
        Returns:
        tsGB(M) a twosided Groebner base for M.
      • isRightGB

        boolean isRightGB​(ModuleList<C> M)
        Module right Groebner base test.
        Parameters:
        M - a module basis.
        Returns:
        true, if M is a right Groebner base, else false.
      • rightGB

        ModuleList<CrightGB​(ModuleList<C> M)
        Right Groebner base using pairlist class.
        Parameters:
        M - a module basis.
        Returns:
        rightGB(M) a right Groebner base for M.