Enum Class RecursiveAdjustment.GraphType

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

public static enum RecursiveAdjustment.GraphType extends Enum<RecursiveAdjustment.GraphType>
Represents the type of graph being analyzed for adjustment set definition.
  • Enum Constant Details

    • PDAG

      public static final RecursiveAdjustment.GraphType PDAG
      Represents a Partially Directed Acyclic Graph (PDAG) within the context of the graph analysis. A PDAG is a graph type used for describing the structure of causal relationships while allowing some edges to remain undirected.
    • MAG

      public static final RecursiveAdjustment.GraphType MAG
      Represents a Maximal Ancestral Graph (MAG) within the context of the graph analysis. A MAG is a graph type used to encode causal relationships, typically in the presence of latent variables and selection bias. It allows the representation of both directed and bidirectional edges while maintaining specific ancestral properties.
    • PAG

      public static final RecursiveAdjustment.GraphType PAG
      Represents a Partial Ancestral Graph (PAG) within the context of the graph analysis. A PAG is used to depict possible causal structures, accounting for latent variables and selection bias. It is a graphical representation that includes directed, undirected, and bidirectional edges, encapsulating causal and non-causal relationships in a compact form.
  • Method Details

    • values

      public static RecursiveAdjustment.GraphType[] 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 RecursiveAdjustment.GraphType 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