Package edu.cmu.tetrad.search.utils
Enum Class PcCommon.ColliderDiscovery
- All Implemented Interfaces:
Serializable
,Comparable<PcCommon.ColliderDiscovery>
,Constable
- Enclosing class:
PcCommon
Gives the options for the collider discovery algorithm to use--FAS with sepsets reasoning, FAS with conservative
reasoning, or FAS with Max P reasoning. See these respective references:
Spirtes, P., Glymour, C. N., & Scheines, R. (2000). Causation, prediction, and search. MIT press.
Ramsey, J., Zhang, J., & Spirtes, P. L. (2012). Adjacency-faithfulness and conservative causal inference. arXiv preprint arXiv:1206.6843.
Ramsey, J. (2016). Improving accuracy and scalability of the pc algorithm by maximizing p-value. arXiv preprint arXiv:1610.00378.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFAS with conservative reasoning.FAS with sepsets reasoning.FAS with Max P reasoning. -
Method Summary
Modifier and TypeMethodDescriptionstatic PcCommon.ColliderDiscovery
Returns the enum constant of this class with the specified name.static PcCommon.ColliderDiscovery[]
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
-
CONSERVATIVE
FAS with conservative reasoning. -
FAS_SEPSETS
FAS with sepsets reasoning. -
MAX_P
FAS with Max P reasoning.
-
-
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
-