Package com.bayesserver.analysis
Class ImpactOptions
- java.lang.Object
-
- com.bayesserver.analysis.ImpactOptions
-
public final class ImpactOptions extends Object
Options affecting how Impact analysis calculations are performed.
-
-
Constructor Summary
Constructors Constructor Description ImpactOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InferenceFactorygetFactory()Gets the inference factory which is used to create inference engines during an impact analysis.booleangetKeepEvidenceNotAnalyzed()Gets a value which when true retains evidence not being analysed, or when false ignores it.intgetMaxEvidenceSubsetSize()Gets the maximum size of evidence subsets to consider.ImpactSubsetMethodgetSubsetMethod()Gets a value which determines whether evidence subsets are included, excluded or both.voidsetFactory(InferenceFactory value)Sets the inference factory which is used to create inference engines during an impact analysis.voidsetKeepEvidenceNotAnalyzed(boolean value)Sets a value which when true retains evidence not being analysed, or when false ignores it.voidsetMaxEvidenceSubsetSize(int value)Sets the maximum size of evidence subsets to consider.voidsetSubsetMethod(ImpactSubsetMethod 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 ImpactSubsetMethod getSubsetMethod()
Gets a value which determines whether evidence subsets are included, excluded or both.
-
setSubsetMethod
public void setSubsetMethod(ImpactSubsetMethod 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 an impact analysis.
-
setFactory
public void setFactory(InferenceFactory value)
Sets the inference factory which is used to create inference engines during an impact analysis.
-
-