Package edu.cmu.tetrad.search
Enum Class Fci.ColliderRule
- All Implemented Interfaces:
Serializable,Comparable<Fci.ColliderRule>,Constable
- Enclosing class:
Fci
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 ConstantsEnum ConstantDescriptionRepresents 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 TypeMethodDescriptionstatic Fci.ColliderRuleReturns the enum constant of this class with the specified name.static Fci.ColliderRule[]values()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
-
Enum Constant Details
-
SEPSETS
Indicates that separation sets (or conditional independence sets) are to be used for handling colliders. -
CONSERVATIVE
Represents a more conservative approach to handling colliders, avoiding assumptions that may lead to incorrect inferences. -
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
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
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 nameNullPointerException- if the argument is null
-