Package edu.jas.arith

Class ModIntegerRing

    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.math.BigInteger modul
      Module part of the factory data structure.
    • Constructor Summary

      Constructors 
      Constructor Description
      ModIntegerRing​(long m)
      The constructor creates a ModIntegerRing object from a long as module part.
      ModIntegerRing​(long m, boolean isField)
      The constructor creates a ModIntegerRing object from a long as module part.
      ModIntegerRing​(java.lang.String m)
      The constructor creates a ModIntegerRing object from a String object as module part.
      ModIntegerRing​(java.lang.String m, boolean isField)
      The constructor creates a ModIntegerRing object from a String object as module part.
      ModIntegerRing​(java.math.BigInteger m)
      The constructor creates a ModIntegerRing object from a BigInteger object as module part.
      ModIntegerRing​(java.math.BigInteger m, boolean isField)
      The constructor creates a ModIntegerRing object from a BigInteger object as module part.
    • Field Detail

      • modul

        public final java.math.BigInteger modul
        Module part of the factory data structure.
    • Constructor Detail

      • ModIntegerRing

        public ModIntegerRing​(java.math.BigInteger m)
        The constructor creates a ModIntegerRing object from a BigInteger object as module part.
        Parameters:
        m - math.BigInteger.
      • ModIntegerRing

        public ModIntegerRing​(java.math.BigInteger m,
                              boolean isField)
        The constructor creates a ModIntegerRing object from a BigInteger object as module part.
        Parameters:
        m - math.BigInteger.
        isField - indicator if m is prime.
      • ModIntegerRing

        public ModIntegerRing​(long m)
        The constructor creates a ModIntegerRing object from a long as module part.
        Parameters:
        m - long.
      • ModIntegerRing

        public ModIntegerRing​(long m,
                              boolean isField)
        The constructor creates a ModIntegerRing object from a long as module part.
        Parameters:
        m - long.
        isField - indicator if m is prime.
      • ModIntegerRing

        public ModIntegerRing​(java.lang.String m)
        The constructor creates a ModIntegerRing object from a String object as module part.
        Parameters:
        m - String.
      • ModIntegerRing

        public ModIntegerRing​(java.lang.String m,
                              boolean isField)
        The constructor creates a ModIntegerRing object from a String object as module part.
        Parameters:
        m - String.
        isField - indicator if m is prime.