Class Rfci
java.lang.Object
edu.cmu.tetrad.algcomparison.algorithm.AbstractBootstrapAlgorithm
edu.cmu.tetrad.algcomparison.algorithm.oracle.pag.Rfci
- All Implemented Interfaces:
- Algorithm,- ReturnsBootstrapGraphs,- TakesCovarianceMatrix,- HasKnowledge,- HasParameters,- TakesIndependenceWrapper,- TetradSerializable,- Serializable
@Algorithm(name="RFCI",
           command="rfci",
           algoType=allow_latent_common_causes)
@Bootstrapping
public class Rfci
extends AbstractBootstrapAlgorithm
implements Algorithm, HasKnowledge, TakesIndependenceWrapper, ReturnsBootstrapGraphs, TakesCovarianceMatrix
RFCI.
- Version:
- $Id: $Id
- Author:
- josephramsey
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionRfci()Initializes a new instance of the Rfci class.Rfci(IndependenceWrapper test) Creates an instance of Rfci with the given IndependenceWrapper.
- 
Method SummaryModifier and TypeMethodDescriptiongetComparisonGraph(Graph graph) Returns a comparison graph based on the provided true directed graph.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 a knowledge object.Returns the list of parameter names that are used.runSearch(DataModel dataModel, Parameters parameters) Runs the search algorithm on the given data model and parameters.voidSets the independence wrapper.voidsetKnowledge(Knowledge knowledge) Sets a knowledge object.Methods inherited from class edu.cmu.tetrad.algcomparison.algorithm.AbstractBootstrapAlgorithmgetBootstrapGraphs, searchMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface edu.cmu.tetrad.algcomparison.algorithm.ReturnsBootstrapGraphsgetBootstrapGraphs
- 
Constructor Details- 
Rfcipublic Rfci()Initializes a new instance of the Rfci class.
- 
RfciCreates an instance of Rfci with the given IndependenceWrapper.- Parameters:
- test- The IndependenceWrapper to be used.
 
 
- 
- 
Method Details- 
runSearchRuns the search algorithm on the given data model and parameters.- Parameters:
- dataModel- The data model to search on.
- parameters- The parameters for the search.
- Returns:
- The resulting graph from the search algorithm.
- Throws:
- InterruptedException
 
- 
getComparisonGraphReturns a comparison graph based on the provided true directed graph.- Specified by:
- getComparisonGraphin interface- Algorithm
- Parameters:
- graph- The true DAG, if there is one.
- Returns:
- A comparison graph obtained by transforming the true graph into a partially directed acyclic graph (PAG).
 
- 
getDescriptionReturns a short, one-line description of this algorithm.- Specified by:
- getDescriptionin interface- Algorithm
- Returns:
- A short description of this algorithm.
 
- 
getDataTypeReturns the data type that the search requires, whether continuous, discrete, or mixed.- Specified by:
- getDataTypein interface- Algorithm
- Returns:
- This type.
 
- 
getParametersReturns the list of parameter names that are used. These are looked up in ParamMap, so if they're not- Specified by:
- getParametersin interface- HasParameters
- 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.
 
- 
getKnowledgeReturns a knowledge object.- Specified by:
- getKnowledgein interface- HasKnowledge
- Returns:
- a knowledge object.
 
- 
setKnowledgeSets a knowledge object.- Specified by:
- setKnowledgein interface- HasKnowledge
- Parameters:
- knowledge- a knowledge object.
 
- 
getIndependenceWrapperReturns the independence wrapper.- Specified by:
- getIndependenceWrapperin interface- TakesIndependenceWrapper
- Returns:
- the independence wrapper.
 
- 
setIndependenceWrapperSets the independence wrapper.- Specified by:
- setIndependenceWrapperin interface- TakesIndependenceWrapper
- Parameters:
- test- the independence wrapper.
 
 
-