Package edu.jas.gbmod
Interface ModGroebnerBase<C extends RingElem<C>>
-
- All Known Implementing Classes:
ModGroebnerBaseAbstract
,ModGroebnerBasePar
,ModGroebnerBaseSeq
@Deprecated public interface ModGroebnerBase<C extends RingElem<C>>
Deprecated.use respective methods from GroebnerBaseModule Groebner Bases interface. Defines Groebner bases and GB test.- Author:
- Heinz Kredel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.List<GenPolynomial<C>>
GB(int modv, java.util.List<GenPolynomial<C>> F)
Deprecated.Groebner base using pairlist class.ModuleList<C>
GB(ModuleList<C> M)
Deprecated.GB.boolean
isGB(int modv, java.util.List<GenPolynomial<C>> F)
Deprecated.Module Groebner base test.boolean
isGB(ModuleList<C> M)
Deprecated.isGB.
-
-
-
Method Detail
-
isGB
boolean isGB(int modv, java.util.List<GenPolynomial<C>> F)
Deprecated.Module Groebner base test.
-
isGB
boolean isGB(ModuleList<C> M)
Deprecated.isGB.- Parameters:
M
- a module basis.- Returns:
- true, if M is a Groebner base, else false.
-
GB
java.util.List<GenPolynomial<C>> GB(int modv, java.util.List<GenPolynomial<C>> F)
Deprecated.Groebner base using pairlist class.
-
GB
ModuleList<C> GB(ModuleList<C> M)
Deprecated.GB.- Parameters:
M
- a module basis.- Returns:
- GB(M), a Groebner base of M.
-
-