Enum Class Fci.ColliderRule

java.lang.Object
java.lang.Enum<Fci.ColliderRule>
edu.cmu.tetrad.search.Fci.ColliderRule
All Implemented Interfaces:
Serializable, Comparable<Fci.ColliderRule>, Constable
Enclosing class:
Fci

public static enum Fci.ColliderRule extends Enum<Fci.ColliderRule>
The ColliderRule enum defines the rules or strategies used to handle collider structures in causal inference or related algorithms. A collider is a specific type of dependency structure that arises in probabilistic graphical models and causal graphs.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Represents a more conservative approach to handling colliders, avoiding assumptions that may lead to incorrect inferences.
    Refers to the rule where the maximum p-value is considered when deciding colliders, often used in statistical tests or algorithms.
    Indicates that separation sets (or conditional independence sets) are to be used for handling colliders.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SEPSETS

      public static final Fci.ColliderRule SEPSETS
      Indicates that separation sets (or conditional independence sets) are to be used for handling colliders.
    • CONSERVATIVE

      public static final Fci.ColliderRule CONSERVATIVE
      Represents a more conservative approach to handling colliders, avoiding assumptions that may lead to incorrect inferences.
    • MAX_P

      public static final Fci.ColliderRule MAX_P
      Refers to the rule where the maximum p-value is considered when deciding colliders, often used in statistical tests or algorithms.
  • Method Details

    • values

      public static Fci.ColliderRule[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Fci.ColliderRule valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null