Class DfgMiningParameters
- java.lang.Object
-
- org.processmining.plugins.InductiveMiner.dfgOnly.DfgMiningParameters
-
- Direct Known Subclasses:
DfgMiningParametersIMcd,DfgMiningParametersIMd,DfgMiningParametersIMfd,DfgMiningParametersPartialOrder,DfgMiningParametersStreams
public abstract class DfgMiningParameters extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description DfgMiningParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Iterable<DfgBaseCaseFinder>getDfgBaseCaseFinders()DfgCutFindergetDfgCutFinder()java.lang.Iterable<DfgFallThrough>getDfgFallThroughs()DfgSplittergetDfgSplitter()floatgetIncompleteThreshold()floatgetNoiseThreshold()ProbabilitiesgetSatProbabilities()booleanisDebug()booleanisUseMultiThreading()voidsetDebug(boolean debug)voidsetDfgBaseCaseFinders(java.lang.Iterable<DfgBaseCaseFinder> baseCaseFinders)voidsetDfgCutFinder(DfgCutFinder dfgCutFinder)voidsetDfgFallThroughs(java.lang.Iterable<DfgFallThrough> dfgFallThroughs)voidsetDfgSplitter(DfgSplitter dfgSplitter)voidsetIncompleteThreshold(float incompleteThreshold)voidsetNoiseThreshold(float noiseThreshold)voidsetSatProbabilities(Probabilities satProbabilities)voidsetUseMultithreading(boolean useMultithreading)
-
-
-
Method Detail
-
setUseMultithreading
public void setUseMultithreading(boolean useMultithreading)
-
isUseMultiThreading
public boolean isUseMultiThreading()
-
getDfgBaseCaseFinders
public java.lang.Iterable<DfgBaseCaseFinder> getDfgBaseCaseFinders()
-
setDfgBaseCaseFinders
public void setDfgBaseCaseFinders(java.lang.Iterable<DfgBaseCaseFinder> baseCaseFinders)
-
getDfgCutFinder
public DfgCutFinder getDfgCutFinder()
-
setDfgCutFinder
public void setDfgCutFinder(DfgCutFinder dfgCutFinder)
-
getDfgSplitter
public DfgSplitter getDfgSplitter()
-
setDfgSplitter
public void setDfgSplitter(DfgSplitter dfgSplitter)
-
getDfgFallThroughs
public java.lang.Iterable<DfgFallThrough> getDfgFallThroughs()
-
setDfgFallThroughs
public void setDfgFallThroughs(java.lang.Iterable<DfgFallThrough> dfgFallThroughs)
-
isDebug
public boolean isDebug()
-
setDebug
public void setDebug(boolean debug)
-
getNoiseThreshold
public float getNoiseThreshold()
-
setNoiseThreshold
public void setNoiseThreshold(float noiseThreshold)
-
getSatProbabilities
public Probabilities getSatProbabilities()
-
setSatProbabilities
public void setSatProbabilities(Probabilities satProbabilities)
-
getIncompleteThreshold
public float getIncompleteThreshold()
-
setIncompleteThreshold
public void setIncompleteThreshold(float incompleteThreshold)
-
-