aboutsummaryrefslogtreecommitdiffstats
path: root/src/algorithms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/algorithms.py')
-rw-r--r--src/algorithms.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/algorithms.py b/src/algorithms.py
index 0afee24..9f6d3ea 100644
--- a/src/algorithms.py
+++ b/src/algorithms.py
@@ -61,9 +61,6 @@ def correctness_measure(G, G_hat, print_values=False):
edges = set(G.edges())
edges_hat = set(G_hat.edges())
- print(sorted(edges))
- print(sorted(edges_hat))
-
fp = len(edges_hat - edges)
fn = len(edges - edges_hat)
tp = len(edges & edges_hat)