It looks like you're new here. If you want to get involved, click one of these buttons!
// ALPHA++However, this still seems to call the regular alpha miner as its output is not sound and running the input data in prom 6.11 does generate a connected net at least.
org.deckfour.xes.classification.XEventClassifier clss = new org.deckfour.xes.classification.XEventNameClassifier();
pars = new org.processmining.alphaminer.parameters.AlphaMinerParameters(org.processmining.alphaminer.parameters.AlphaVersion.PLUS_PLUS);
a_net = alpha_miner(log, clss, pars);
// INDUCTIVEWith exception of the alpha miner these calls work and seem to generate sound models, but I need to know for sure.
org.processmining.plugins.InductiveMiner.mining.MiningParametersIM parameters = new org.processmining.plugins.InductiveMiner.mining.MiningParametersIM();
pn_and_marking = mine_petri_net_with_inductive_miner_with_parameters(log, parameters);
// HEURISTIC
org.deckfour.xes.classification.XEventClassifier clss = new org.deckfour.xes.classification.XEventNameClassifier();
org.processmining.plugins.heuristicsnet.miner.heuristics.miner.settings.HeuristicsMinerSettings hms = new org.processmining.plugins.heuristicsnet.miner.heuristics.miner.settings.HeuristicsMinerSettings();
hms.setClassifier(clss);
net = mine_for_a_heuristics_net_using_heuristics_miner(log, hms);
h_net = convert_heuristics_net_into_petri_net(net);
// ALPHA++
org.deckfour.xes.classification.XEventClassifier clss = new org.deckfour.xes.classification.XEventNameClassifier();
pars = new org.processmining.alphaminer.parameters.AlphaMinerParameters(org.processmining.alphaminer.parameters.AlphaVersion.PLUS_PLUS);
a_net = alpha_miner(log, clss, pars);
// Hybrid ILP
org.deckfour.xes.classification.XEventClassifier clss = new org.deckfour.xes.classification.XEventNameClassifier();
i_net = ilp_based_process_discovery(log, clss);
@GOTO start
:add
@set X=%X%;%1
@GOTO :eof
:start
@set X=.\dist\ProM-Framework-6.11.121.jar
@set X=%X%;.\dist\ProM-Contexts-6.11.67.jar
@set X=%X%;.\dist\ProM-Models-6.10.43.jar
@set X=%X%;.\dist\ProM-Plugins-6.9.75.jar
@for /R .\lib %%I IN ("*.jar") DO @call :add .\lib\%%~nI.jar
@jre8\bin\java^
-Xmx6G^
-da^
-classpath "%X%"^
-Djava.library.path=.//lib^
-Djava.system.class.loader=org.processmining.framework.util.ProMClassLoader^
-Djava.util.Arrays.useLegacyMergeSort=true^
org.processmining.contexts.cli.CLI %1 %2
set X=