From 17f86337706ad5640154fffd2c5078a792debf66 Mon Sep 17 00:00:00 2001 From: Guilherme Henrique <guihss.cs@gmail.com> Date: Fri, 28 Mar 2025 09:57:07 +0100 Subject: [PATCH] cpx change --- complex_evaluate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/complex_evaluate.py b/complex_evaluate.py index 418c0bd..647a5f3 100644 --- a/complex_evaluate.py +++ b/complex_evaluate.py @@ -72,6 +72,7 @@ def evaluate_edoal(p1, p2, w = 0.5, sim_func = tree_sim): maps1 = load_maps(p1) maps2 = load_maps(p2) + p_simple_count = 0 p_complex_count = 0 for m1, m2 in maps1: @@ -144,4 +145,4 @@ def jaccard_sim(e1, e2): post_order(e1, lambda x, y: s1.update(filter_entities(y[0]))) post_order(e2, lambda x, y: s2.update(filter_entities(y[0]))) - return jaccard(s1, s2) + return jaccard(s1, s2) \ No newline at end of file -- GitLab