Source code for pm4py.objects.bpmn.layout.layouter

from enum import Enum

from pm4py.objects.bpmn.layout.variants import graphviz, graphviz_new
from pm4py.util import exec_utils


[docs] class Variants(Enum): GRAPHVIZ = graphviz GRAPHVIZ_NEW = graphviz_new
DEFAULT_VARIANT = Variants.GRAPHVIZ_NEW
[docs] def apply(bpmn_graph, variant=DEFAULT_VARIANT, parameters=None): """ Layouts a BPMN graph (inserting the positions of the nodes and the layouting of the edges) Parameters ------------- bpmn_graph BPMN graph variant Variant of the algorithm to use, possible values: - Variants.GRAPHVIZ parameters Parameters of the algorithm Returns ------------- bpmn_graph BPMN graph with layout information """ return exec_utils.get_variant(variant).apply( bpmn_graph, parameters=parameters )