Class Cstar
java.lang.Object
edu.cmu.tetrad.algcomparison.algorithm.oracle.cpdag.Cstar
- All Implemented Interfaces:
Algorithm
,HasParameters
,TakesIndependenceWrapper
,UsesScoreWrapper
,TetradSerializable
,Serializable
@Algorithm(name="CStaR",
command="cstar",
algoType=forbid_latent_common_causes)
public class Cstar
extends Object
implements Algorithm, UsesScoreWrapper, TakesIndependenceWrapper
Cstar class.
- Version:
- $Id: $Id
- Author:
- josephramsey
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCstar()
Constructor for Cstar.Cstar
(IndependenceWrapper test, ScoreWrapper score) Constructor for Cstar. -
Method Summary
Modifier and TypeMethodDescriptiongetComparisonGraph
(Graph graph) Returns that graph that the result should be compared to.Returns the data type that the search requires, whether continuous, discrete, or mixed.Returns a short, one-line description of this algorithm.Returns the independence wrapper.Returns the list of parameter names that are used.Getter for the fieldrecords
.Returns the score wrapper.search
(DataModel dataSet, Parameters parameters) Runs the search.void
setIndependenceWrapper
(IndependenceWrapper independenceWrapper) Sets the independence wrapper.void
setScoreWrapper
(ScoreWrapper score) Sets the score wrapper.
-
Constructor Details
-
Cstar
public Cstar()Constructor for Cstar.
-
Cstar
Constructor for Cstar.
- Parameters:
test
- aIndependenceWrapper
objectscore
- aScoreWrapper
object
-
-
Method Details
-
search
Runs the search. -
getComparisonGraph
Returns that graph that the result should be compared to.- Specified by:
getComparisonGraph
in interfaceAlgorithm
- Parameters:
graph
- The true directed graph, if there is one.- Returns:
- The comparison graph.
-
getDescription
Returns a short, one-line description of this algorithm. This will be printed in the report.- Specified by:
getDescription
in interfaceAlgorithm
- Returns:
- This description.
-
getDataType
Returns the data type that the search requires, whether continuous, discrete, or mixed.- Specified by:
getDataType
in interfaceAlgorithm
- Returns:
- This type.
-
getParameters
Returns the list of parameter names that are used. These are looked up in ParamMap, so if they're not- Specified by:
getParameters
in interfaceHasParameters
- Returns:
- Returns the list of parameter names that are used. These are looked up in ParamMap, so if they're not already defined they'll need to be defined there.
-
getScoreWrapper
Returns the score wrapper.- Specified by:
getScoreWrapper
in interfaceUsesScoreWrapper
- Returns:
- the score wrapper.
-
setScoreWrapper
Sets the score wrapper.- Specified by:
setScoreWrapper
in interfaceUsesScoreWrapper
- Parameters:
score
- the score wrapper.
-
getRecords
Getter for the field
records
.- Returns:
- a
LinkedList
object
-
getIndependenceWrapper
Returns the independence wrapper.- Specified by:
getIndependenceWrapper
in interfaceTakesIndependenceWrapper
- Returns:
- the independence wrapper.
-
setIndependenceWrapper
Sets the independence wrapper.- Specified by:
setIndependenceWrapper
in interfaceTakesIndependenceWrapper
- Parameters:
independenceWrapper
- the independence wrapper.
-