pm4py.algo.simulation.tree_generator.variants.basic module#

class pm4py.algo.simulation.tree_generator.variants.basic.Parameters(*values)[source]#

Bases: Enum

REC_DEPTH = 'rec_depth'#
MIN_REC_DEPTH = 'min_rec_depth'#
MAX_REC_DEPTH = 'max_rec_depth'#
PROB_LEAF = 'prob_leaf'#
pm4py.algo.simulation.tree_generator.variants.basic.generate_random_string(N)[source]#

Generate a random string

Parameters:

N – length of the string

Returns:

Random string

Return type:

random_string

pm4py.algo.simulation.tree_generator.variants.basic.get_random_operator()[source]#

Gets a random operator

Returns:

Operator

Return type:

operator

pm4py.algo.simulation.tree_generator.variants.basic.apply(parameters: Dict[str | Parameters, Any] | None = None) ProcessTree[source]#

Generate a process tree

Parameters:

parameters

Paramters of the algorithm, including:

Parameters.REC_DEPTH -> current recursion depth Parameters.MIN_REC_DEPTH -> minimum recursion depth Parameters.MAX_REC_DEPTH -> maximum recursion depth Parameters.PROB_LEAF -> Probability to get a leaf

Returns:

Process tree

Return type:

tree