Source code for pm4py.objects.conversion.process_tree.variants.to_powl
'''
PM4Py – A Process Mining Library for Python
Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see this software project's root or
visit <https://www.gnu.org/licenses/>.
Website: https://processintelligence.solutions
Contact: info@processintelligence.solutions
'''
from pm4py.objects.process_tree.obj import ProcessTree, Operator as PTOperator
from pm4py.objects.powl.obj import (
POWL,
StrictPartialOrder,
OperatorPOWL,
Transition,
SilentTransition,
)
from typing import Optional, Dict, Any
[docs]
def apply_recursive(tree: ProcessTree, rec_depth=0) -> POWL:
"""
Internal method
"""
nodes = []
for c in tree.children:
nodes.append(apply_recursive(c, rec_depth + 1))
if tree.operator is None:
if tree.label is not None:
powl = Transition(label=tree.label)
else:
powl = SilentTransition()
elif tree.operator == PTOperator.OR:
raise Exception(
"conversion of process trees containing OR nodes is not supported!"
)
elif tree.operator == PTOperator.XOR:
powl = OperatorPOWL(PTOperator.XOR, nodes)
elif tree.operator == PTOperator.LOOP:
powl = OperatorPOWL(PTOperator.LOOP, nodes)
else:
powl = StrictPartialOrder(nodes=nodes)
if tree.operator == PTOperator.SEQUENCE:
for i in range(len(nodes) - 1):
powl.order.add_edge(nodes[i], nodes[i + 1])
return powl
[docs]
def apply(
tree: ProcessTree, parameters: Optional[Dict[Any, Any]] = None
) -> POWL:
"""
Converts a process tree model to a POWL model
Parameters
---------------
tree
Process tree
Returns
---------------
powl_model
POWL model
"""
if parameters is None:
parameters = {}
return apply_recursive(tree)