aboutsummaryrefslogtreecommitdiffstats
path: root/src/algorithms.py
diff options
context:
space:
mode:
authorjeanpouget-abadie <jean.pougetabadie@gmail.com>2015-02-03 11:28:45 -0500
committerjeanpouget-abadie <jean.pougetabadie@gmail.com>2015-02-03 11:28:45 -0500
commit072f7f0b0a2965d7d640a9fcf5ef60feb0756d93 (patch)
treeac73728a08b1085f395a1128677faf7b639b128b /src/algorithms.py
parentc650550dab33eac8e0eb86d9843a942ae00cc9c9 (diff)
downloadcascades-072f7f0b0a2965d7d640a9fcf5ef60feb0756d93.tar.gz
random
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)