From d5f01f5c70dda0a5b496bb6d5d83016aa5fad077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 5 Nov 2023 19:00:56 +0100 Subject: [PATCH] remove checkes --- src/edmonds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/edmonds.cpp b/src/edmonds.cpp index 7849e88..2c0e869 100644 --- a/src/edmonds.cpp +++ b/src/edmonds.cpp @@ -102,7 +102,7 @@ void maximum_matching_from_initial_matching(Graph & graph) { for(NodeId neighbor_id : graph.node(id).neighbors()) { - check_integrity(graph); + //check_integrity(graph); //std::cout << "Check passed" << std::endl; if (graph.is_out_of_forest(neighbor_id)) { @@ -200,7 +200,7 @@ void maximum_matching_from_initial_matching(Graph & graph) graph.node(node_id).rho = blossom_root_id; } } - check_integrity(graph); + //check_integrity(graph); } } }