From 03f9afa67bcae3d8652e960ab493cc3d85456482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 5 Nov 2023 21:25:10 +0100 Subject: [PATCH] remove unneeded method --- src/edmonds.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/edmonds.cpp b/src/edmonds.cpp index 5cc37b3..d11461d 100644 --- a/src/edmonds.cpp +++ b/src/edmonds.cpp @@ -83,19 +83,6 @@ std::vector path_to_forest_root(Graph const & graph, NodeId id) return retval; } -__attribute__((noinline)) -NodeId find_outer_vertex(Graph const & graph) -{ - for(NodeId id = 0; id < graph.num_nodes(); ++id) - { - if (not graph.node(id).scanned and graph.is_outer(id)) - { - return id; - } - } - return invalid_node_id; -} - void collect_exposed_vertices(Graph & graph, std::stack & container) { std::stack().swap(container);