From 69db21942333c28ed0774894cf459cf7ef8556bd Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Wed, 11 Oct 2017 22:03:35 +0000 Subject: [PATCH] Remove unused definition in contractor --- include/contractor/contractor.hpp | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/include/contractor/contractor.hpp b/include/contractor/contractor.hpp index 5ba5cc3d4..ee1d2dd42 100644 --- a/include/contractor/contractor.hpp +++ b/include/contractor/contractor.hpp @@ -29,16 +29,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #define CONTRACTOR_CONTRACTOR_HPP #include "contractor/contractor_config.hpp" -#include "contractor/query_edge.hpp" -#include "extractor/edge_based_edge.hpp" -#include "extractor/edge_based_node_segment.hpp" -#include "util/deallocating_vector.hpp" -#include "util/typedefs.hpp" - -#include -#include - -#include namespace osrm { @@ -49,8 +39,6 @@ namespace contractor class Contractor { public: - using EdgeData = QueryEdge::EdgeData; - explicit Contractor(const ContractorConfig &config_) : config{config_} {} Contractor(const Contractor &) = delete; @@ -58,14 +46,6 @@ class Contractor int Run(); - protected: - void ContractGraph(const unsigned max_edge_id, - util::DeallocatingVector &edge_based_edge_list, - util::DeallocatingVector &contracted_edge_list, - std::vector &&node_weights, - std::vector &is_core_node, - std::vector &inout_node_levels) const; - private: ContractorConfig config; };