@@ -65,6 +65,7 @@ The following conversions are currently available:
6565 * :meth: `pm4py.convert.convert_to_bpmn ` converts a process model to BPMN
6666 * :meth: `pm4py.convert.convert_to_petri_net ` converts a process model to a Petri net
6767 * :meth: `pm4py.convert.convert_to_process_tree ` converts a process model to a process tree
68+ * :meth: `pm4py.convert.convert_to_powl ` converts a process model to a POWL model
6869 * :meth: `pm4py.convert.convert_to_reachability_graph ` converts a process model to a reachability graph
6970 * :meth: `pm4py.convert.convert_log_to_ocel ` converts an event log to an object-centric event log
7071 * :meth: `pm4py.convert.convert_log_to_networkx ` converts a traditional event log (dataframe) to a directed graph (NetworkX)
@@ -402,8 +403,14 @@ Other algorithms, which do not belong to the aforementioned categories, are coll
402403 * :meth: `pm4py.analysis.reduce_petri_net_invisibles `; reduces the invisible transitions of a Petri net when possible.
403404 * :meth: `pm4py.analysis.reduce_petri_net_implicit_places `; reduces the implicit places in the Petri net (using MURATA).
404405 * :meth: `pm4py.analysis.get_enabled_transitions `; gets the transitions enabled in a given marking.
405-
406-
406+ * :meth: `pm4py.analysis.simplicity_petri_net `; computes the simplicity metric on the given Petri net.
407+ * :meth: `pm4py.analysis.behavioral_similarity `; computes the behavioral similarity between two process models.
408+ * :meth: `pm4py.analysis.structural_similarity `; computes the structural similarity between two process models.
409+ * :meth: `pm4py.analysis.embeddings_similarity `; computes the embeddings similarity between two process models.
410+ * :meth: `pm4py.analysis.label_sets_similarity `; computes the label-sets-similarity between two process models.
411+ * :meth: `pm4py.analysis.get_activity_labels `; gets the activity labels from the given event log or process model.
412+ * :meth: `pm4py.analysis.replace_activity_labels `; uses a substitution dictionary to replace the names of the activities in the process model.
413+ * :meth: `pm4py.analysis.map_labels_from_second_model `; maps the activity labels of the second process model on top of the first.
407414
408415
409416List of Methods
@@ -451,6 +458,7 @@ List of Methods
451458 pm4py.convert.convert_ocel_to_networkx
452459 pm4py.convert.convert_petri_net_to_networkx
453460 pm4py.convert.convert_petri_net_type
461+ pm4py.convert.convert_to_powl
454462 pm4py.discovery
455463 pm4py.discovery.discover_dfg
456464 pm4py.discovery.discover_performance_dfg
@@ -670,6 +678,14 @@ List of Methods
670678 pm4py.analysis.reduce_petri_net_invisibles
671679 pm4py.analysis.reduce_petri_net_implicit_places
672680 pm4py.analysis.get_enabled_transitions
681+ pm4py.analysis.simplicity_petri_net
682+ pm4py.analysis.behavioral_similarity
683+ pm4py.analysis.structural_similarity
684+ pm4py.analysis.embeddings_similarity
685+ pm4py.analysis.get_activity_labels
686+ pm4py.analysis.replace_activity_labels
687+ pm4py.analysis.label_sets_similarity
688+ pm4py.analysis.map_labels_from_second_model
673689 pm4py.utils
674690 pm4py.utils.rebase
675691 pm4py.utils.parse_process_tree
0 commit comments