Class Grasp
java.lang.Object
edu.cmu.tetrad.algcomparison.algorithm.AbstractBootstrapAlgorithm
edu.cmu.tetrad.algcomparison.algorithm.oracle.cpdag.Grasp
- All Implemented Interfaces:
- Algorithm,- ReturnsBootstrapGraphs,- TakesCovarianceMatrix,- HasKnowledge,- HasParameters,- TakesIndependenceWrapper,- UsesScoreWrapper,- TetradSerializable,- Serializable
@Algorithm(name="GRASP",
           command="grasp",
           algoType=forbid_latent_common_causes)
@Bootstrapping
public class Grasp
extends AbstractBootstrapAlgorithm
implements Algorithm, UsesScoreWrapper, TakesIndependenceWrapper, HasKnowledge, ReturnsBootstrapGraphs, TakesCovarianceMatrix
GRaSP (Greedy Relaxations of Sparsest Permutation)
- Version:
- $Id: $Id
- Author:
- bryanandrews, josephramsey
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionGrasp()Constructor for Grasp.Grasp(IndependenceWrapper test, ScoreWrapper score) Constructor for Grasp.
- 
Method SummaryModifier 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 a knowledge object.Returns the list of parameter names that are used.Returns the score wrapper.voidsetIndependenceWrapper(IndependenceWrapper independenceWrapper) Sets the independence wrapper.voidsetKnowledge(Knowledge knowledge) Sets a knowledge object.voidsetScoreWrapper(ScoreWrapper score) Sets the score wrapper.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- 
Grasppublic Grasp()Constructor for Grasp. 
- 
GraspConstructor for Grasp. - Parameters:
- test- a- IndependenceWrapperobject
- score- a- ScoreWrapperobject
 
 
- 
- 
Method Details- 
getComparisonGraphReturns that graph that the result should be compared to.- Specified by:
- getComparisonGraphin interface- Algorithm
- Parameters:
- graph- The true directed graph, if there is one.
- Returns:
- The comparison graph.
 
- 
getDescriptionReturns a short, one-line description of this algorithm. This will be printed in the report.- Specified by:
- getDescriptionin interface- Algorithm
- Returns:
- This description.
 
- 
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.
 
- 
getScoreWrapperReturns the score wrapper.- Specified by:
- getScoreWrapperin interface- UsesScoreWrapper
- Returns:
- the score wrapper.
 
- 
setScoreWrapperSets the score wrapper.- Specified by:
- setScoreWrapperin interface- UsesScoreWrapper
- Parameters:
- score- the score wrapper.
 
- 
getIndependenceWrapperReturns the independence wrapper.- Specified by:
- getIndependenceWrapperin interface- TakesIndependenceWrapper
- Returns:
- the independence wrapper.
 
- 
setIndependenceWrapperSets the independence wrapper.- Specified by:
- setIndependenceWrapperin interface- TakesIndependenceWrapper
- Parameters:
- independenceWrapper- the independence wrapper.
 
- 
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.
 
 
-