Package com.bayesserver.analysis
Class LogLikelihoodAnalysisOptions
- java.lang.Object
-
- com.bayesserver.analysis.LogLikelihoodAnalysisOptions
-
public final class LogLikelihoodAnalysisOptions extends Object
Options affecting how Log-Likelihood analysis calculations are performed.
-
-
Constructor Summary
Constructors Constructor Description LogLikelihoodAnalysisOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InferenceFactory
getFactory()
Gets the inference factory which is used to create inference engines during a Log-Likelihood analysis.boolean
getKeepEvidenceNotAnalyzed()
Gets a value which when true retains evidence not being analysed, or when false ignores it.int
getMaxEvidenceSubsetSize()
Gets the maximum size of evidence subsets to consider.LogLikelihoodAnalysisSubsetMethod
getSubsetMethod()
Gets a value which determines whether evidence subsets are included, excluded or both.void
setFactory(InferenceFactory value)
Sets the inference factory which is used to create inference engines during a Log-Likelihood analysis.void
setKeepEvidenceNotAnalyzed(boolean value)
Sets a value which when true retains evidence not being analysed, or when false ignores it.void
setMaxEvidenceSubsetSize(int value)
Sets the maximum size of evidence subsets to consider.void
setSubsetMethod(LogLikelihoodAnalysisSubsetMethod value)
Sets a value which determines whether evidence subsets are included, excluded or both.
-
-
-
Method Detail
-
getKeepEvidenceNotAnalyzed
public boolean getKeepEvidenceNotAnalyzed()
Gets a value which when true retains evidence not being analysed, or when false ignores it.
-
setKeepEvidenceNotAnalyzed
public void setKeepEvidenceNotAnalyzed(boolean value)
Sets a value which when true retains evidence not being analysed, or when false ignores it.
-
getSubsetMethod
public LogLikelihoodAnalysisSubsetMethod getSubsetMethod()
Gets a value which determines whether evidence subsets are included, excluded or both.
-
setSubsetMethod
public void setSubsetMethod(LogLikelihoodAnalysisSubsetMethod value)
Sets a value which determines whether evidence subsets are included, excluded or both.
-
getMaxEvidenceSubsetSize
public int getMaxEvidenceSubsetSize()
Gets the maximum size of evidence subsets to consider.
-
setMaxEvidenceSubsetSize
public void setMaxEvidenceSubsetSize(int value)
Sets the maximum size of evidence subsets to consider.
-
getFactory
public InferenceFactory getFactory()
Gets the inference factory which is used to create inference engines during a Log-Likelihood analysis.
-
setFactory
public void setFactory(InferenceFactory value)
Sets the inference factory which is used to create inference engines during a Log-Likelihood analysis.
-
-