Skip to content

Commit f01029a

Browse files
Merge pull request #536 from EMuellers/release
Fixed a bug in project function of concurrency.py
2 parents 4790661 + 1bce42e commit f01029a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pm4py/algo/discovery/inductive/cuts/concurrency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def project(
116116
for g in groups:
117117
c = Counter()
118118
for t in obj.data_structure:
119-
c[tuple(filter(lambda e: e in g, t))] = obj.data_structure[t]
119+
c[tuple(filter(lambda e: e in g, t))] += obj.data_structure[t]
120120
r.append(c)
121121
return list(map(lambda l: IMDataStructureUVCL(l), r))
122122

0 commit comments

Comments
 (0)