Add missing headers and remove dead code

This commit is contained in:
Patrick Niklaus 2016-04-29 20:02:08 +02:00
parent 578eda7d28
commit 64307ea882
No known key found for this signature in database
GPG Key ID: E426891B5F978B1B
4 changed files with 3 additions and 41 deletions

View File

@ -7,6 +7,7 @@
#include "extractor/guidance/turn_instruction.hpp"
#include "storage/storage_config.hpp"
#include "engine/geospatial_query.hpp"
#include "extractor/original_edge_data.hpp"
#include "extractor/profile_properties.hpp"

View File

@ -9,6 +9,7 @@
#include "extractor/guidance/turn_instruction.hpp"
#include "extractor/profile_properties.hpp"
#include "extractor/compressed_edge_container.hpp"
#include "engine/geospatial_query.hpp"
#include "util/range_table.hpp"

View File

@ -1,41 +0,0 @@
#ifndef TRIP_BRUTE_FORCE_HPP
#define TRIP_BRUTE_FORCE_HPP
#include "engine/search_engine.hpp"
#include "util/simple_logger.hpp"
#include "osrm/json_container.hpp"
#include <cstdlib>
#include <algorithm>
#include <string>
#include <vector>
#include <limits>
namespace osrm
{
namespace engine
{
namespace trip
{
// todo: yet to be implemented
void TabuSearchTrip(std::vector<unsigned> &location,
const PhantomNodeArray &phantom_node_vector,
const std::vector<EdgeWeight> &dist_table,
InternalRouteResult &min_route,
std::vector<int> &min_loc_permutation)
{
}
void TabuSearchTrip(const PhantomNodeArray &phantom_node_vector,
const std::vector<EdgeWeight> &dist_table,
InternalRouteResult &min_route,
std::vector<int> &min_loc_permutation)
{
}
}
}
}
#endif // TRIP_BRUTE_FORCE_HPP

View File

@ -5,6 +5,7 @@
#include <utility>
#include <boost/assert.hpp>
#include <cstddef>
#include <algorithm>
namespace osrm
{