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 InferenceFactory
getFactory()
Gets the inference factory which is used to create inference engines during an impact 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.ImpactSubsetMethod
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 an impact 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(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.
-
-