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); } } }