From c613e7ef6f1c674ef57f333c6c88c514583b3e18 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 4 Jan 2023 17:15:47 +0100 Subject: [PATCH] :sparkles: --- .../__pycache__/DCR_graph.cpython-310.pyc | Bin 7637 -> 7637 bytes .../conformance_testing.cpython-310.pyc | Bin 825 -> 852 bytes Assignment-2/conformance_testing.py | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Assignment-2/__pycache__/DCR_graph.cpython-310.pyc b/Assignment-2/__pycache__/DCR_graph.cpython-310.pyc index 3c6ee3259101eefe7e2479fec129eb6a92b130d8..35dbe5b2aa85fd3c4c20e5951399098fa34efb22 100644 GIT binary patch delta 19 Zcmca=ebt&PpO=@50SL}5-N`a@K6o6K-F>)}n{pVp3VB!L@fNVwy3s@I2)UwvF)-aVZ z7AX~q)G*bsN-|`z6>Bjvq_9r>Ey-<>!Wztw!WPV+$v#=0@yBF2rcH7(KqJ{0IT+dg d^RNgoaWQf*F)?y6u`%&6aWSzlP5#7`1ON+;92Wop diff --git a/Assignment-2/conformance_testing.py b/Assignment-2/conformance_testing.py index ec91823..50d9471 100644 --- a/Assignment-2/conformance_testing.py +++ b/Assignment-2/conformance_testing.py @@ -12,10 +12,10 @@ def conformance_test(log:pd.DataFrame, dcr_graph:Graph): for _, event in log.iterrows(): event_name = event.EventName.lower() if event_name not in all_event_names: - if "_ROW_" not in all_event_names: + if "_row_" not in all_event_names: return False - event_name = "_ROW_" + event_name = "_row_" if not all_event_names[event_name].enabled: return False