Package edu.jas.arith

Class ProductRing<C extends RingElem<C>>

    • Constructor Detail

      • ProductRing

        public ProductRing​(RingFactory<C> r,
                           int n)
        The constructor creates a ProductRing object from an ring factory and a modul.
        Parameters:
        r - ring factory.
        n - number of copies.
      • ProductRing

        public ProductRing​(java.util.List<RingFactory<C>> l)
        The constructor creates a ProductRing object from an ring factory and a modul.
        Parameters:
        l - list of ring factories.
    • Method Detail

      • getFactory

        public RingFactory<CgetFactory​(int i)
        Get ring factory at index i.
        Parameters:
        i - index.
        Returns:
        RingFactory_i.
      • addFactory

        public void addFactory​(RingFactory<C> rf)
        Add a ring factory.
        Parameters:
        rf - new ring factory.
      • containsFactory

        public boolean containsFactory​(RingFactory<C> rf)
        Contains a ring factory.
        Parameters:
        rf - ring factory.
        Returns:
        true, if rf is contained in this, else false.
      • getAtomic

        public Product<CgetAtomic​(int i)
        Get an atomic element.
        Parameters:
        i - index.
        Returns:
        e_i as Product.
      • length

        public int length()
        Get the number of factors of this ring.
        Returns:
        nCopies or ringList.size().
      • onlyFields

        public boolean onlyFields()
        Query if this ring consists only of fields.
        Returns:
        true or false.
      • toString

        public java.lang.String toString()
        Get the String representation as RingFactory.
        Overrides:
        toString in class java.lang.Object
        See Also:
        Object.toString()
      • equals

        public boolean equals​(java.lang.Object b)
        Comparison with any other object.
        Overrides:
        equals in class java.lang.Object
        See Also:
        Object.equals(java.lang.Object)
      • hashCode

        public int hashCode()
        Hash code for this product ring.
        Overrides:
        hashCode in class java.lang.Object
        See Also:
        Object.hashCode()
      • random

        public Product<Crandom​(int n)
        Product random.
        Specified by:
        random in interface ElemFactory<C extends RingElem<C>>
        Parameters:
        n - such that 0 ≤ v ≤ (2n-1).
        Returns:
        a random product element v.
      • random

        public Product<Crandom​(int n,
                                 float q)
        Product random.
        Parameters:
        n - such that 0 ≤ v ≤ (2n-1).
        q - density of nozero entries.
        Returns:
        a random product element v.
      • random

        public Product<Crandom​(int n,
                                 java.util.Random rnd)
        Product random.
        Specified by:
        random in interface ElemFactory<C extends RingElem<C>>
        Parameters:
        n - such that 0 ≤ v ≤ (2n-1).
        rnd - is a source for random bits.
        Returns:
        a random product element v.
      • random

        public Product<Crandom​(int n,
                                 float q,
                                 java.util.Random rnd)
        Product random.
        Parameters:
        n - such that 0 ≤ v ≤ (2n-1).
        q - density of nozero entries.
        rnd - is a source for random bits.
        Returns:
        a random product element v.
      • parse

        public Product<Cparse​(java.lang.String s)
        Parse Product from String.
        Specified by:
        parse in interface ElemFactory<C extends RingElem<C>>
        Parameters:
        s - String.
        Returns:
        Product from s.
      • parse

        public Product<Cparse​(java.io.Reader r)
        Parse Product from Reader. Syntax: p1 ... pn (no commas)
        Specified by:
        parse in interface ElemFactory<C extends RingElem<C>>
        Parameters:
        r - Reader.
        Returns:
        next Product from r.