Skip to content

Commit 0084807

Browse files
Merge remote-tracking branch 'upstream/hotfixes' into release
2 parents 48ff590 + b4df572 commit 0084807

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pm4py/analysis.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -815,8 +815,9 @@ def structural_similarity(*args) -> float:
815815
Computes the structural similarity between two semi-block-structured process models,
816816
following an approach similar to:
817817
818-
Dijkman, Remco, et al. "Similarity of business process models: Metrics and evaluation."
819-
Information Systems 36.2 (2011): 498-516.
818+
Yan, Z., Dijkman, R., & Grefen, P. (2012). Fast business process similarity search.
819+
Distributed and Parallel Databases, 30(2), 105–144.
820+
(https://doi.org/10.1007/s10619-012-7089-z)
820821
821822
Examples:
822823
* pm4py.structural_similarity(petri_net, im, fm, process_tree)

pm4py/objects/process_tree/utils/struct_similarity.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@ def structural_similarity(tree1: pt.ProcessTree,
144144
weights: Dict[str, float] = None) -> float:
145145
"""
146146
Computes the structural similarity between two process trees, following an approach similar to:
147-
Dijkman, Remco, et al. "Similarity of business process models: Metrics and evaluation." Information Systems 36.2 (2011): 498-516.
147+
148+
Yan, Z., Dijkman, R., & Grefen, P. (2012). Fast business process similarity search.
149+
Distributed and Parallel Databases, 30(2), 105–144.
150+
(https://doi.org/10.1007/s10619-012-7089-z)
148151
149152
Parameters
150153
---------------

0 commit comments

Comments
 (0)