You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I seem to generate some errors when trying to do an extensive playout of a generated process tree, generated with the build in generator.
from pm4py.algo.simulation.tree_generator import algorithm as tree_gen
from pm4py.algo.simulation.playout.process_tree import algorithm as tree_playout
tree = tree_gen.apply()
playout_variant = tree_playout.Variants.EXTENSIVE
param = tree_playout.Variants.EXTENSIVE.value.Parameters
simulated_log = tree_playout.apply(tree, variant=playout_variant, parameters={param.MAX_TRACE_LENGTH: 200, param.MAX_LOOP_OCC: 3, param.MAX_LIMIT_NUM_TRACES: 1000})
The error occurs when executing the get_playout function in the algorithm and has KeyError: 'traces'. I have also played with the different parameters of the playout function and the error seems to occurs for all kinds of operators.
KR,
Jari Peeperkorn
The text was updated successfully, but these errors were encountered:
I seem to generate some errors when trying to do an extensive playout of a generated process tree, generated with the build in generator.
from pm4py.algo.simulation.tree_generator import algorithm as tree_gen
from pm4py.algo.simulation.playout.process_tree import algorithm as tree_playout
tree = tree_gen.apply()
playout_variant = tree_playout.Variants.EXTENSIVE
param = tree_playout.Variants.EXTENSIVE.value.Parameters
simulated_log = tree_playout.apply(tree, variant=playout_variant, parameters={param.MAX_TRACE_LENGTH: 200, param.MAX_LOOP_OCC: 3, param.MAX_LIMIT_NUM_TRACES: 1000})
The error occurs when executing the get_playout function in the algorithm and has KeyError: 'traces'. I have also played with the different parameters of the playout function and the error seems to occurs for all kinds of operators.
KR,
Jari Peeperkorn
The text was updated successfully, but these errors were encountered: