diff --git a/Assignment-2/__pycache__/DCR_graph.cpython-310.pyc b/Assignment-2/__pycache__/DCR_graph.cpython-310.pyc index 3c6ee32..35dbe5b 100644 Binary files a/Assignment-2/__pycache__/DCR_graph.cpython-310.pyc and b/Assignment-2/__pycache__/DCR_graph.cpython-310.pyc differ diff --git a/Assignment-2/__pycache__/conformance_testing.cpython-310.pyc b/Assignment-2/__pycache__/conformance_testing.cpython-310.pyc index 157a03a..00dd4c2 100644 Binary files a/Assignment-2/__pycache__/conformance_testing.cpython-310.pyc and b/Assignment-2/__pycache__/conformance_testing.cpython-310.pyc differ 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