pm4py.objects.process_tree.obj module#
- class pm4py.objects.process_tree.obj.Operator(*values)[source]#
Bases:
Enum- SEQUENCE = '->'#
- XOR = 'X'#
- PARALLEL = '+'#
- LOOP = '*'#
- OR = 'O'#
- INTERLEAVING = '<>'#
- PARTIALORDER = 'PO'#
- class pm4py.objects.process_tree.obj.ProcessTree(operator=None, parent=None, children=None, label=None)[source]#
Bases:
object- class OperatorState(*values)[source]#
Bases:
Enum- ENABLED = 'enabled'#
- OPEN = 'open'#
- CLOSED = 'closed'#
- FUTURE = 'future'#
- to_string(level=0, indent=False, max_indent=9223372036854775807)[source]#
Represents a process tree model as a string.
- Parameters:
indent – Enable the indentation of the resulting string
max_indent – Maximum level of indentation
- property parent#
- property children#
- property operator#
- property label#