Class Dimension

  • All Implemented Interfaces:
    java.io.Serializable

    public class Dimension
    extends java.lang.Object
    implements java.io.Serializable
    Container for dimension parameters.
    Author:
    Heinz Kredel
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int d
      Ideal dimension.
      java.util.Set<java.util.Set<java.lang.Integer>> M
      Set of indices of all maximal independent sets (of variables).
      java.util.Set<java.lang.Integer> S
      Indices of a maximal independent set (of variables).
      java.lang.String[] v
      Names of all variables.
    • Constructor Summary

      Constructors 
      Constructor Description
      Dimension​(int d, java.util.Set<java.lang.Integer> S, java.util.Set<java.util.Set<java.lang.Integer>> M, java.lang.String[] v)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()
      String representation of the ideal.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • d

        public final int d
        Ideal dimension.
      • S

        public final java.util.Set<java.lang.Integer> S
        Indices of a maximal independent set (of variables).
      • M

        public final java.util.Set<java.util.Set<java.lang.Integer>> M
        Set of indices of all maximal independent sets (of variables).
      • v

        public final java.lang.String[] v
        Names of all variables.
    • Constructor Detail

      • Dimension

        public Dimension​(int d,
                         java.util.Set<java.lang.Integer> S,
                         java.util.Set<java.util.Set<java.lang.Integer>> M,
                         java.lang.String[] v)
        Constructor.
        Parameters:
        d - ideal dimension.
        S - indices of a maximal independent set (of variables)
        M - set of indices of all maximal independent sets (of variables)
        v - names of all variables
    • Method Detail

      • toString

        public java.lang.String toString()
        String representation of the ideal.
        Overrides:
        toString in class java.lang.Object
        See Also:
        Object.toString()