Package edu.cmu.tetrad.search.utils
Enum Class PcCommon.ColliderDiscovery
- All Implemented Interfaces:
Serializable
,Comparable<PcCommon.ColliderDiscovery>
,java.lang.constant.Constable
- Enclosing class:
- PcCommon
Give the options for the collider discovery algroithm 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 Constants -
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.
-
Enum Constant Details
-
FAS_SEPSETS
-
CONSERVATIVE
-
MAX_P
-
-
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
-