Fix include paths

This commit is contained in:
Patrick Niklaus 2016-01-02 17:13:44 +01:00
parent b618a1241f
commit 97585bb26a
145 changed files with 627 additions and 627 deletions

View File

@ -28,17 +28,17 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef CONTRACTOR_HPP #ifndef CONTRACTOR_HPP
#define CONTRACTOR_HPP #define CONTRACTOR_HPP
#include "../data_structures/binary_heap.hpp" #include "util/binary_heap.hpp"
#include "../data_structures/deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "../data_structures/dynamic_graph.hpp" #include "util/dynamic_graph.hpp"
#include "../data_structures/percent.hpp" #include "util/percent.hpp"
#include "../data_structures/query_edge.hpp" #include "contractor/query_edge.hpp"
#include "../data_structures/xor_fast_hash.hpp" #include "util/xor_fast_hash.hpp"
#include "../data_structures/xor_fast_hash_storage.hpp" #include "util/xor_fast_hash_storage.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef PROCESSING_CHAIN_HPP #ifndef PROCESSING_CHAIN_HPP
#define PROCESSING_CHAIN_HPP #define PROCESSING_CHAIN_HPP
#include "contractor.hpp" #include "contractor/contractor.hpp"
#include "contractor_options.hpp" #include "contractor/contractor_options.hpp"
#include "../data_structures/query_edge.hpp" #include "contractor/query_edge.hpp"
#include "../data_structures/static_graph.hpp" #include "util/static_graph.hpp"
#include "../data_structures/deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "../data_structures/node_based_graph.hpp" #include "util/node_based_graph.hpp"
struct SpeedProfileProperties; struct SpeedProfileProperties;
struct EdgeBasedNode; struct EdgeBasedNode;

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef QUERYEDGE_HPP #ifndef QUERYEDGE_HPP
#define QUERYEDGE_HPP #define QUERYEDGE_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <tuple> #include <tuple>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SHARED_MEMORY_FACTORY_HPP #ifndef SHARED_MEMORY_FACTORY_HPP
#define SHARED_MEMORY_FACTORY_HPP #define SHARED_MEMORY_FACTORY_HPP
#include "../util/osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp> #include <boost/filesystem/fstream.hpp>

View File

@ -30,16 +30,16 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// Exposes all data access interfaces to the algorithms via base class ptr // Exposes all data access interfaces to the algorithms via base class ptr
#include "../../data_structures/edge_based_node.hpp" #include "extractor/edge_based_node.hpp"
#include "../../data_structures/external_memory_node.hpp" #include "extractor/external_memory_node.hpp"
#include "../../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../../util/osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "../../util/string_util.hpp" #include "util/string_util.hpp"
#include "../../typedefs.h" #include "util/typedefs.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <string> #include <string>
#include <boost/optional.hpp> #include <boost/optional.hpp>

View File

@ -30,20 +30,20 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// implements all data storage when shared memory is _NOT_ used // implements all data storage when shared memory is _NOT_ used
#include "datafacade_base.hpp" #include "engine/datafacade/datafacade_base.hpp"
#include "../../algorithms/geospatial_query.hpp" #include "engine/geospatial_query.hpp"
#include "../../data_structures/original_edge_data.hpp" #include "extractor/original_edge_data.hpp"
#include "../../data_structures/query_node.hpp" #include "extractor/query_node.hpp"
#include "../../data_structures/query_edge.hpp" #include "contractor/query_edge.hpp"
#include "../../data_structures/shared_memory_vector_wrapper.hpp" #include "util/shared_memory_vector_wrapper.hpp"
#include "../../data_structures/static_graph.hpp" #include "util/static_graph.hpp"
#include "../../data_structures/static_rtree.hpp" #include "util/static_rtree.hpp"
#include "../../data_structures/range_table.hpp" #include "util/range_table.hpp"
#include "../../util/graph_loader.hpp" #include "util/graph_loader.hpp"
#include "../../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <boost/thread.hpp> #include <boost/thread.hpp>

View File

@ -30,15 +30,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// implements all data storage when shared memory _IS_ used // implements all data storage when shared memory _IS_ used
#include "datafacade_base.hpp" #include "engine/datafacade/datafacade_base.hpp"
#include "shared_datatype.hpp" #include "engine/datafacade/shared_datatype.hpp"
#include "../../algorithms/geospatial_query.hpp" #include "engine/geospatial_query.hpp"
#include "../../data_structures/range_table.hpp" #include "util/range_table.hpp"
#include "../../data_structures/static_graph.hpp" #include "util/static_graph.hpp"
#include "../../data_structures/static_rtree.hpp" #include "util/static_rtree.hpp"
#include "../../util/make_unique.hpp" #include "util/make_unique.hpp"
#include "../../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/thread.hpp> #include <boost/thread.hpp>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SHARED_DATA_TYPE_HPP #ifndef SHARED_DATA_TYPE_HPP
#define SHARED_DATA_TYPE_HPP #define SHARED_DATA_TYPE_HPP
#include "../../util/osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "../../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <cstdint> #include <cstdint>

View File

@ -28,15 +28,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DESCRIPTION_FACTORY_HPP #ifndef DESCRIPTION_FACTORY_HPP
#define DESCRIPTION_FACTORY_HPP #define DESCRIPTION_FACTORY_HPP
#include "../algorithms/douglas_peucker.hpp" #include "engine/douglas_peucker.hpp"
#include "../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../data_structures/segment_information.hpp" #include "engine/segment_information.hpp"
#include "../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cmath> #include <cmath>

View File

@ -28,14 +28,14 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DESCRIPTOR_BASE_HPP #ifndef DESCRIPTOR_BASE_HPP
#define DESCRIPTOR_BASE_HPP #define DESCRIPTOR_BASE_HPP
#include "../algorithms/coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
#include "../data_structures/internal_route_result.hpp" #include "engine/internal_route_result.hpp"
#include "../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <string> #include <string>
#include <unordered_map> #include <unordered_map>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef GPX_DESCRIPTOR_HPP #ifndef GPX_DESCRIPTOR_HPP
#define GPX_DESCRIPTOR_HPP #define GPX_DESCRIPTOR_HPP
#include "descriptor_base.hpp" #include "engine/descriptors/descriptor_base.hpp"
#include "../util/xml_renderer.hpp" #include "util/xml_renderer.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <iostream> #include <iostream>

View File

@ -28,21 +28,21 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef JSON_DESCRIPTOR_HPP #ifndef JSON_DESCRIPTOR_HPP
#define JSON_DESCRIPTOR_HPP #define JSON_DESCRIPTOR_HPP
#include "descriptor_base.hpp" #include "engine/descriptors/descriptor_base.hpp"
#include "description_factory.hpp" #include "engine/descriptors/description_factory.hpp"
#include "../algorithms/object_encoder.hpp" #include "engine/object_encoder.hpp"
#include "../algorithms/route_name_extraction.hpp" #include "engine/route_name_extraction.hpp"
#include "../data_structures/segment_information.hpp" #include "engine/segment_information.hpp"
#include "../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../util/bearing.hpp" #include "util/bearing.hpp"
#include "../util/cast.hpp" #include "util/cast.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/json_renderer.hpp" #include "util/json_renderer.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../util/string_util.hpp" #include "util/string_util.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <limits> #include <limits>
#include <algorithm> #include <algorithm>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DOUGLAS_PEUCKER_HPP_ #ifndef DOUGLAS_PEUCKER_HPP_
#define DOUGLAS_PEUCKER_HPP_ #define DOUGLAS_PEUCKER_HPP_
#include "../data_structures/segment_information.hpp" #include "engine/segment_information.hpp"
#include <array> #include <array>
#include <stack> #include <stack>

View File

@ -1,12 +1,12 @@
#ifndef GEOSPATIAL_QUERY_HPP #ifndef GEOSPATIAL_QUERY_HPP
#define GEOSPATIAL_QUERY_HPP #define GEOSPATIAL_QUERY_HPP
#include "coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../util/bearing.hpp" #include "util/bearing.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <vector> #include <vector>
#include <memory> #include <memory>

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RAW_ROUTE_DATA_H #ifndef RAW_ROUTE_DATA_H
#define RAW_ROUTE_DATA_H #define RAW_ROUTE_DATA_H
#include "../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../data_structures/travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <vector> #include <vector>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef HIDDEN_MARKOV_MODEL #ifndef HIDDEN_MARKOV_MODEL
#define HIDDEN_MARKOV_MODEL #define HIDDEN_MARKOV_MODEL
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -31,11 +31,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
class BasePlugin; class BasePlugin;
struct RouteParameters; struct RouteParameters;
#include "../data_structures/query_edge.hpp" #include "contractor/query_edge.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <osrm/libosrm_config.hpp> #include "osrm/libosrm_config.hpp"
#include <osrm/osrm.hpp> #include "osrm/osrm.hpp"
#include <memory> #include <memory>
#include <unordered_map> #include <unordered_map>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef PHANTOM_NODES_H #ifndef PHANTOM_NODES_H
#define PHANTOM_NODES_H #define PHANTOM_NODES_H
#include "travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <iostream> #include <iostream>
#include <utility> #include <utility>

View File

@ -28,18 +28,18 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DISTANCE_TABLE_HPP #ifndef DISTANCE_TABLE_HPP
#define DISTANCE_TABLE_HPP #define DISTANCE_TABLE_HPP
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../algorithms/object_encoder.hpp" #include "engine/object_encoder.hpp"
#include "../data_structures/query_edge.hpp" #include "contractor/query_edge.hpp"
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../descriptors/descriptor_base.hpp" #include "engine/descriptors/descriptor_base.hpp"
#include "../util/json_renderer.hpp" #include "util/json_renderer.hpp"
#include "../util/make_unique.hpp" #include "util/make_unique.hpp"
#include "../util/string_util.hpp" #include "util/string_util.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cstdlib> #include <cstdlib>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef HELLO_WORLD_HPP #ifndef HELLO_WORLD_HPP
#define HELLO_WORLD_HPP #define HELLO_WORLD_HPP
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../util/json_renderer.hpp" #include "util/json_renderer.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <string> #include <string>

View File

@ -28,19 +28,19 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef MATCH_HPP #ifndef MATCH_HPP
#define MATCH_HPP #define MATCH_HPP
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../algorithms/bayes_classifier.hpp" #include "engine/map_matching/bayes_classifier.hpp"
#include "../algorithms/object_encoder.hpp" #include "engine/object_encoder.hpp"
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../descriptors/descriptor_base.hpp" #include "engine/descriptors/descriptor_base.hpp"
#include "../descriptors/json_descriptor.hpp" #include "engine/descriptors/json_descriptor.hpp"
#include "../routing_algorithms/map_matching.hpp" #include "engine/routing_algorithms/map_matching.hpp"
#include "../util/compute_angle.hpp" #include "util/compute_angle.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/json_logger.hpp" #include "util/json_logger.hpp"
#include "../util/json_util.hpp" #include "util/json_util.hpp"
#include "../util/string_util.hpp" #include "util/string_util.hpp"
#include <cstdlib> #include <cstdlib>

View File

@ -28,13 +28,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef NEAREST_HPP #ifndef NEAREST_HPP
#define NEAREST_HPP #define NEAREST_HPP
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/json_renderer.hpp" #include "util/json_renderer.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <string> #include <string>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef BASE_PLUGIN_HPP #ifndef BASE_PLUGIN_HPP
#define BASE_PLUGIN_HPP #define BASE_PLUGIN_HPP
#include "../data_structures/phantom_node.hpp" #include "engine/phantom_node.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <osrm/route_parameters.hpp> #include "osrm/route_parameters.hpp"
#include <algorithm> #include <algorithm>
#include <string> #include <string>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TIMESTAMP_PLUGIN_H #ifndef TIMESTAMP_PLUGIN_H
#define TIMESTAMP_PLUGIN_H #define TIMESTAMP_PLUGIN_H
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../util/json_renderer.hpp" #include "util/json_renderer.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <string> #include <string>

View File

@ -28,25 +28,25 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TRIP_HPP #ifndef TRIP_HPP
#define TRIP_HPP #define TRIP_HPP
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../algorithms/object_encoder.hpp" #include "engine/object_encoder.hpp"
#include "../algorithms/tarjan_scc.hpp" #include "extractor/tarjan_scc.hpp"
#include "../algorithms/trip_nearest_neighbour.hpp" #include "engine/trip/trip_nearest_neighbour.hpp"
#include "../algorithms/trip_farthest_insertion.hpp" #include "engine/trip/trip_farthest_insertion.hpp"
#include "../algorithms/trip_brute_force.hpp" #include "engine/trip/trip_brute_force.hpp"
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../data_structures/matrix_graph_wrapper.hpp" // wrapper to use tarjan #include "util/matrix_graph_wrapper.hpp" // wrapper to use tarjan
// scc on dist table // scc on dist table
#include "../descriptors/descriptor_base.hpp" // to make json output #include "engine/descriptors/descriptor_base.hpp" // to make json output
#include "../descriptors/json_descriptor.hpp" // to make json output #include "engine/descriptors/json_descriptor.hpp" // to make json output
#include "../util/make_unique.hpp" #include "util/make_unique.hpp"
#include "../util/timing_util.hpp" // to time runtime #include "util/timing_util.hpp" // to time runtime
//#include "../util/simple_logger.hpp" // for logging output //#include "util/simple_logger.hpp" // for logging output
#include "../util/dist_table_wrapper.hpp" // to access the dist #include "util/dist_table_wrapper.hpp" // to access the dist
// table more easily // table more easily
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <cstdlib> #include <cstdlib>

View File

@ -28,20 +28,20 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef VIA_ROUTE_HPP #ifndef VIA_ROUTE_HPP
#define VIA_ROUTE_HPP #define VIA_ROUTE_HPP
#include "plugin_base.hpp" #include "engine/plugins/plugin_base.hpp"
#include "../algorithms/object_encoder.hpp" #include "engine/object_encoder.hpp"
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../descriptors/descriptor_base.hpp" #include "engine/descriptors/descriptor_base.hpp"
#include "../descriptors/gpx_descriptor.hpp" #include "engine/descriptors/gpx_descriptor.hpp"
#include "../descriptors/json_descriptor.hpp" #include "engine/descriptors/json_descriptor.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/json_renderer.hpp" #include "util/json_renderer.hpp"
#include "../util/make_unique.hpp" #include "util/make_unique.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cstdlib> #include <cstdlib>

View File

@ -30,7 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
struct SegmentInformation; struct SegmentInformation;
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <string> #include <string>
#include <vector> #include <vector>

View File

@ -30,7 +30,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
struct SegmentInformation; struct SegmentInformation;
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <string> #include <string>
#include <vector> #include <vector>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ALTERNATIVE_PATH_ROUTING_HPP #ifndef ALTERNATIVE_PATH_ROUTING_HPP
#define ALTERNATIVE_PATH_ROUTING_HPP #define ALTERNATIVE_PATH_ROUTING_HPP
#include "routing_base.hpp" #include "engine/routing_algorithms/routing_base.hpp"
#include "../data_structures/search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/container.hpp" #include "util/container.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -31,11 +31,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <iterator> #include <iterator>
#include "routing_base.hpp" #include "engine/routing_algorithms/routing_base.hpp"
#include "../data_structures/search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
/// This is a striped down version of the general shortest path algorithm. /// This is a striped down version of the general shortest path algorithm.
/// The general algorithm always computes two queries for each leg. This is only /// The general algorithm always computes two queries for each leg. This is only

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef MANY_TO_MANY_ROUTING_HPP #ifndef MANY_TO_MANY_ROUTING_HPP
#define MANY_TO_MANY_ROUTING_HPP #define MANY_TO_MANY_ROUTING_HPP
#include "routing_base.hpp" #include "engine/routing_algorithms/routing_base.hpp"
#include "../data_structures/search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef MAP_MATCHING_HPP #ifndef MAP_MATCHING_HPP
#define MAP_MATCHING_HPP #define MAP_MATCHING_HPP
#include "routing_base.hpp" #include "engine/routing_algorithms/routing_base.hpp"
#include "../algorithms/coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
#include "../data_structures/hidden_markov_model.hpp" #include "engine/map_matching/hidden_markov_model.hpp"
#include "../util/json_logger.hpp" #include "util/json_logger.hpp"
#include "../util/matching_debug_info.hpp" #include "util/matching_debug_info.hpp"
#include <cstddef> #include <cstddef>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ROUTING_BASE_HPP #ifndef ROUTING_BASE_HPP
#define ROUTING_BASE_HPP #define ROUTING_BASE_HPP
#include "../algorithms/coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
#include "../data_structures/internal_route_result.hpp" #include "engine/internal_route_result.hpp"
#include "../data_structures/search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SHORTEST_PATH_HPP #ifndef SHORTEST_PATH_HPP
#define SHORTEST_PATH_HPP #define SHORTEST_PATH_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "routing_base.hpp" #include "engine/routing_algorithms/routing_base.hpp"
#include "../data_structures/search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SEARCH_ENGINE_HPP #ifndef SEARCH_ENGINE_HPP
#define SEARCH_ENGINE_HPP #define SEARCH_ENGINE_HPP
#include "search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "../routing_algorithms/alternative_path.hpp" #include "engine/routing_algorithms/alternative_path.hpp"
#include "../routing_algorithms/many_to_many.hpp" #include "engine/routing_algorithms/many_to_many.hpp"
#include "../routing_algorithms/map_matching.hpp" #include "engine/routing_algorithms/map_matching.hpp"
#include "../routing_algorithms/shortest_path.hpp" #include "engine/routing_algorithms/shortest_path.hpp"
#include "../routing_algorithms/direct_shortest_path.hpp" #include "engine/routing_algorithms/direct_shortest_path.hpp"
#include <type_traits> #include <type_traits>

View File

@ -30,8 +30,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <boost/thread/tss.hpp> #include <boost/thread/tss.hpp>
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "binary_heap.hpp" #include "util/binary_heap.hpp"
struct HeapData struct HeapData
{ {

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SEGMENT_INFORMATION_HPP #ifndef SEGMENT_INFORMATION_HPP
#define SEGMENT_INFORMATION_HPP #define SEGMENT_INFORMATION_HPP
#include "turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../data_structures/travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <utility> #include <utility>
// Struct fits everything in one cache line // Struct fits everything in one cache line

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TRIP_BRUTE_FORCE_HPP #ifndef TRIP_BRUTE_FORCE_HPP
#define TRIP_BRUTE_FORCE_HPP #define TRIP_BRUTE_FORCE_HPP
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../util/dist_table_wrapper.hpp" #include "util/dist_table_wrapper.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cstdlib> #include <cstdlib>
#include <algorithm> #include <algorithm>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TRIP_FARTHEST_INSERTION_HPP #ifndef TRIP_FARTHEST_INSERTION_HPP
#define TRIP_FARTHEST_INSERTION_HPP #define TRIP_FARTHEST_INSERTION_HPP
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../util/dist_table_wrapper.hpp" #include "util/dist_table_wrapper.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <cstdlib> #include <cstdlib>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TRIP_NEAREST_NEIGHBOUR_HPP #ifndef TRIP_NEAREST_NEIGHBOUR_HPP
#define TRIP_NEAREST_NEIGHBOUR_HPP #define TRIP_NEAREST_NEIGHBOUR_HPP
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../util/dist_table_wrapper.hpp" #include "util/dist_table_wrapper.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cstdlib> #include <cstdlib>
#include <algorithm> #include <algorithm>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TRIP_BRUTE_FORCE_HPP #ifndef TRIP_BRUTE_FORCE_HPP
#define TRIP_BRUTE_FORCE_HPP #define TRIP_BRUTE_FORCE_HPP
#include "../data_structures/search_engine.hpp" #include "engine/search_engine.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cstdlib> #include <cstdlib>
#include <algorithm> #include <algorithm>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef GEOMETRY_COMPRESSOR_HPP_ #ifndef GEOMETRY_COMPRESSOR_HPP_
#define GEOMETRY_COMPRESSOR_HPP_ #define GEOMETRY_COMPRESSOR_HPP_
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <unordered_map> #include <unordered_map>

View File

@ -30,16 +30,16 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EDGE_BASED_GRAPH_FACTORY_HPP_ #ifndef EDGE_BASED_GRAPH_FACTORY_HPP_
#define EDGE_BASED_GRAPH_FACTORY_HPP_ #define EDGE_BASED_GRAPH_FACTORY_HPP_
#include "speed_profile.hpp" #include "extractor/speed_profile.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "../data_structures/compressed_edge_container.hpp" #include "extractor/compressed_edge_container.hpp"
#include "../data_structures/deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "../data_structures/edge_based_node.hpp" #include "extractor/edge_based_node.hpp"
#include "../data_structures/original_edge_data.hpp" #include "extractor/original_edge_data.hpp"
#include "../data_structures/query_node.hpp" #include "extractor/query_node.hpp"
#include "../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../data_structures/node_based_graph.hpp" #include "util/node_based_graph.hpp"
#include "../data_structures/restriction_map.hpp" #include "extractor/restriction_map.hpp"
#include <algorithm> #include <algorithm>
#include <iosfwd> #include <iosfwd>

View File

@ -28,12 +28,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EDGE_BASED_NODE_HPP #ifndef EDGE_BASED_NODE_HPP
#define EDGE_BASED_NODE_HPP #define EDGE_BASED_NODE_HPP
#include "../data_structures/travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <limits> #include <limits>

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EXTERNAL_MEMORY_NODE_HPP_ #ifndef EXTERNAL_MEMORY_NODE_HPP_
#define EXTERNAL_MEMORY_NODE_HPP_ #define EXTERNAL_MEMORY_NODE_HPP_
#include "query_node.hpp" #include "extractor/query_node.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
struct ExternalMemoryNode : QueryNode struct ExternalMemoryNode : QueryNode
{ {

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EXTRACTION_CONTAINERS_HPP #ifndef EXTRACTION_CONTAINERS_HPP
#define EXTRACTION_CONTAINERS_HPP #define EXTRACTION_CONTAINERS_HPP
#include "internal_extractor_edge.hpp" #include "extractor/internal_extractor_edge.hpp"
#include "first_and_last_segment_of_way.hpp" #include "extractor/first_and_last_segment_of_way.hpp"
#include "scripting_environment.hpp" #include "extractor/scripting_environment.hpp"
#include "../data_structures/external_memory_node.hpp" #include "extractor/external_memory_node.hpp"
#include "../data_structures/restriction.hpp" #include "extractor/restriction.hpp"
#include <stxxl/vector> #include <stxxl/vector>
#include <unordered_map> #include <unordered_map>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EXTRACTION_HELPER_FUNCTIONS_HPP #ifndef EXTRACTION_HELPER_FUNCTIONS_HPP
#define EXTRACTION_HELPER_FUNCTIONS_HPP #define EXTRACTION_HELPER_FUNCTIONS_HPP
#include "../util/cast.hpp" #include "util/cast.hpp"
#include "../util/iso_8601_duration_parser.hpp" #include "util/iso_8601_duration_parser.hpp"
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <boost/algorithm/string_regex.hpp> #include <boost/algorithm/string_regex.hpp>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EXTRACTION_WAY_HPP #ifndef EXTRACTION_WAY_HPP
#define EXTRACTION_WAY_HPP #define EXTRACTION_WAY_HPP
#include "../data_structures/travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <string> #include <string>
#include <vector> #include <vector>

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EXTRACTOR_HPP #ifndef EXTRACTOR_HPP
#define EXTRACTOR_HPP #define EXTRACTOR_HPP
#include "extractor_options.hpp" #include "extractor/extractor_options.hpp"
#include "edge_based_graph_factory.hpp" #include "extractor/edge_based_graph_factory.hpp"
#include "../algorithms/graph_compressor.hpp" #include "extractor/graph_compressor.hpp"
class extractor class extractor
{ {

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef EXTRACTOR_CALLBACKS_HPP #ifndef EXTRACTOR_CALLBACKS_HPP
#define EXTRACTOR_CALLBACKS_HPP #define EXTRACTOR_CALLBACKS_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/optional/optional_fwd.hpp> #include <boost/optional/optional_fwd.hpp>
#include <string> #include <string>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef FIRST_AND_LAST_SEGMENT_OF_WAY_HPP #ifndef FIRST_AND_LAST_SEGMENT_OF_WAY_HPP
#define FIRST_AND_LAST_SEGMENT_OF_WAY_HPP #define FIRST_AND_LAST_SEGMENT_OF_WAY_HPP
#include "../data_structures/external_memory_node.hpp" #include "extractor/external_memory_node.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <limits> #include <limits>
#include <string> #include <string>

View File

@ -27,10 +27,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef GEOMETRY_COMPRESSOR_HPP #ifndef GEOMETRY_COMPRESSOR_HPP
#define GEOMETRY_COMPRESSOR_HPP #define GEOMETRY_COMPRESSOR_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "../extractor/speed_profile.hpp" #include "extractor/speed_profile.hpp"
#include "../data_structures/node_based_graph.hpp" #include "util/node_based_graph.hpp"
#include <memory> #include <memory>
#include <unordered_set> #include <unordered_set>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef IMPORT_EDGE_HPP #ifndef IMPORT_EDGE_HPP
#define IMPORT_EDGE_HPP #define IMPORT_EDGE_HPP
#include "../data_structures/travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
struct NodeBasedEdge struct NodeBasedEdge
{ {

View File

@ -28,13 +28,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef INTERNAL_EXTRACTOR_EDGE_HPP #ifndef INTERNAL_EXTRACTOR_EDGE_HPP
#define INTERNAL_EXTRACTOR_EDGE_HPP #define INTERNAL_EXTRACTOR_EDGE_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "../data_structures/travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "../data_structures/import_edge.hpp" #include "extractor/import_edge.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <utility> #include <utility>
struct InternalExtractorEdge struct InternalExtractorEdge

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef NODE_ID_HPP #ifndef NODE_ID_HPP
#define NODE_ID_HPP #define NODE_ID_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
struct Cmp struct Cmp
{ {

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ORIGINAL_EDGE_DATA_HPP #ifndef ORIGINAL_EDGE_DATA_HPP
#define ORIGINAL_EDGE_DATA_HPP #define ORIGINAL_EDGE_DATA_HPP
#include "travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include "turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <limits> #include <limits>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef QUERY_NODE_HPP #ifndef QUERY_NODE_HPP
#define QUERY_NODE_HPP #define QUERY_NODE_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <limits> #include <limits>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RASTER_SOURCE_HPP #ifndef RASTER_SOURCE_HPP
#define RASTER_SOURCE_HPP #define RASTER_SOURCE_HPP
#include "../util/osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp> #include <boost/filesystem/fstream.hpp>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RESTRICTION_HPP #ifndef RESTRICTION_HPP
#define RESTRICTION_HPP #define RESTRICTION_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <limits> #include <limits>

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RESTRICTION_MAP_HPP #ifndef RESTRICTION_MAP_HPP
#define RESTRICTION_MAP_HPP #define RESTRICTION_MAP_HPP
#include "restriction.hpp" #include "extractor/restriction.hpp"
#include "../util/std_hash.hpp" #include "util/std_hash.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RESTRICTION_PARSER_HPP #ifndef RESTRICTION_PARSER_HPP
#define RESTRICTION_PARSER_HPP #define RESTRICTION_PARSER_HPP
#include "../data_structures/restriction.hpp" #include "extractor/restriction.hpp"
#include <boost/optional/optional.hpp> #include <boost/optional/optional.hpp>

View File

@ -28,18 +28,18 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TARJAN_SCC_HPP #ifndef TARJAN_SCC_HPP
#define TARJAN_SCC_HPP #define TARJAN_SCC_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "../data_structures/deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "../data_structures/import_edge.hpp" #include "extractor/import_edge.hpp"
#include "../data_structures/query_node.hpp" #include "extractor/query_node.hpp"
#include "../data_structures/percent.hpp" #include "util/percent.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../util/std_hash.hpp" #include "util/std_hash.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <cstdint> #include <cstdint>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ROUTE_PARAMETERS_HPP #ifndef ROUTE_PARAMETERS_HPP
#define ROUTE_PARAMETERS_HPP #define ROUTE_PARAMETERS_HPP
#include <osrm/coordinate.hpp> #include "coordinate.hpp"
#include <boost/fusion/container/vector/vector_fwd.hpp> #include <boost/fusion/container/vector/vector_fwd.hpp>
#include <boost/spirit/include/qi.hpp> #include <boost/spirit/include/qi.hpp>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef CONNECTION_HPP #ifndef CONNECTION_HPP
#define CONNECTION_HPP #define CONNECTION_HPP
#include "http/compression_type.hpp" #include "server/http/compression_type.hpp"
#include "http/reply.hpp" #include "server/http/reply.hpp"
#include "http/request.hpp" #include "server/http/request.hpp"
#include "request_parser.hpp" #include "server/request_parser.hpp"
#include <boost/array.hpp> #include <boost/array.hpp>
#include <boost/asio.hpp> #include <boost/asio.hpp>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef REPLY_HPP #ifndef REPLY_HPP
#define REPLY_HPP #define REPLY_HPP
#include "header.hpp" #include "server/http/header.hpp"
#include <boost/asio.hpp> #include <boost/asio.hpp>

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef REQUEST_PARSER_HPP #ifndef REQUEST_PARSER_HPP
#define REQUEST_PARSER_HPP #define REQUEST_PARSER_HPP
#include "http/compression_type.hpp" #include "server/http/compression_type.hpp"
#include "http/header.hpp" #include "server/http/header.hpp"
#include "../data_structures/tribool.hpp" #include "util/tribool.hpp"
#include <tuple> #include <tuple>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef SERVER_HPP #ifndef SERVER_HPP
#define SERVER_HPP #define SERVER_HPP
#include "connection.hpp" #include "server/connection.hpp"
#include "request_handler.hpp" #include "server/request_handler.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/asio.hpp> #include <boost/asio.hpp>
#include <boost/bind.hpp> #include <boost/bind.hpp>

View File

@ -29,9 +29,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define DATASTORE_OPTIONS_HPP #define DATASTORE_OPTIONS_HPP
#include "util/version.hpp" #include "util/version.hpp"
#include "ini_file.hpp" #include "util/ini_file.hpp"
#include "osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/any.hpp> #include <boost/any.hpp>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DEALLOCATING_VECTOR_HPP #ifndef DEALLOCATING_VECTOR_HPP
#define DEALLOCATING_VECTOR_HPP #define DEALLOCATING_VECTOR_HPP
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include <boost/iterator/iterator_facade.hpp> #include <boost/iterator/iterator_facade.hpp>

View File

@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DEBUG_GEOMETRY_H #ifndef DEBUG_GEOMETRY_H
#define DEBUG_GEOMETRY_H #define DEBUG_GEOMETRY_H
#include "../contractor/contractor_options.hpp" #include "contractor/contractor_options.hpp"
#include "../data_structures/query_node.hpp" #include "extractor/query_node.hpp"
#ifndef DEBUG_GEOMETRY #ifndef DEBUG_GEOMETRY
@ -57,8 +57,8 @@ inline void DEBUG_TURNS_STOP() {}
#include <iomanip> #include <iomanip>
#include <iostream> #include <iostream>
#include "../include/osrm/coordinate.hpp" #include "util/coordinate.hpp"
#include "../algorithms/coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
boost::filesystem::ofstream debug_geometry_file; boost::filesystem::ofstream debug_geometry_file;
bool dg_output_debug_geometry = false; bool dg_output_debug_geometry = false;

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef DYNAMICGRAPH_HPP #ifndef DYNAMICGRAPH_HPP
#define DYNAMICGRAPH_HPP #define DYNAMICGRAPH_HPP
#include "deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,14 +28,14 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef GRAPH_LOADER_HPP #ifndef GRAPH_LOADER_HPP
#define GRAPH_LOADER_HPP #define GRAPH_LOADER_HPP
#include "fingerprint.hpp" #include "util/fingerprint.hpp"
#include "osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../data_structures/external_memory_node.hpp" #include "extractor/external_memory_node.hpp"
#include "../data_structures/import_edge.hpp" #include "extractor/import_edge.hpp"
#include "../data_structures/query_node.hpp" #include "extractor/query_node.hpp"
#include "../data_structures/restriction.hpp" #include "extractor/restriction.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>

View File

@ -1,7 +1,7 @@
#ifndef GRAPH_UTILS_HPP #ifndef GRAPH_UTILS_HPP
#define GRAPH_UTILS_HPP #define GRAPH_UTILS_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <vector> #include <vector>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef JSON_LOGGER_HPP #ifndef JSON_LOGGER_HPP
#define JSON_LOGGER_HPP #define JSON_LOGGER_HPP
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <boost/thread/tss.hpp> #include <boost/thread/tss.hpp>

View File

@ -31,10 +31,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef JSON_RENDERER_HPP #ifndef JSON_RENDERER_HPP
#define JSON_RENDERER_HPP #define JSON_RENDERER_HPP
#include "cast.hpp" #include "util/cast.hpp"
#include "string_util.hpp" #include "util/string_util.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
namespace osrm namespace osrm
{ {

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef JSON_UTIL_HPP #ifndef JSON_UTIL_HPP
#define JSON_UTIL_HPP #define JSON_UTIL_HPP
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
#include <cmath> #include <cmath>
#include <limits> #include <limits>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef MATCHING_DEBUG_INFO_HPP #ifndef MATCHING_DEBUG_INFO_HPP
#define MATCHING_DEBUG_INFO_HPP #define MATCHING_DEBUG_INFO_HPP
#include "json_logger.hpp" #include "util/json_logger.hpp"
#include "json_util.hpp" #include "util/json_util.hpp"
#include "../data_structures/hidden_markov_model.hpp" #include "engine/map_matching/hidden_markov_model.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
// Provides the debug interface for introspection tools // Provides the debug interface for introspection tools
struct MatchingDebugInfo struct MatchingDebugInfo

View File

@ -32,7 +32,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <cstddef> #include <cstddef>
#include <iterator> #include <iterator>
#include "../typedefs.h" #include "util/typedefs.hpp"
// This Wrapper provides all methods that are needed for TarjanSCC, when the graph is given in a // This Wrapper provides all methods that are needed for TarjanSCC, when the graph is given in a
// matrix representation (e.g. as output from a distance table call) // matrix representation (e.g. as output from a distance table call)

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef NODE_BASED_GRAPH_HPP #ifndef NODE_BASED_GRAPH_HPP
#define NODE_BASED_GRAPH_HPP #define NODE_BASED_GRAPH_HPP
#include "dynamic_graph.hpp" #include "util/dynamic_graph.hpp"
#include "import_edge.hpp" #include "extractor/import_edge.hpp"
#include "../util/graph_utils.hpp" #include "util/graph_utils.hpp"
#include <tbb/parallel_sort.h> #include <tbb/parallel_sort.h>

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RANGE_TABLE_HPP #ifndef RANGE_TABLE_HPP
#define RANGE_TABLE_HPP #define RANGE_TABLE_HPP
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "shared_memory_factory.hpp" #include "datastore/shared_memory_factory.hpp"
#include "shared_memory_vector_wrapper.hpp" #include "util/shared_memory_vector_wrapper.hpp"
#include <fstream> #include <fstream>
#include <array> #include <array>

View File

@ -28,11 +28,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef RECTANGLE_HPP #ifndef RECTANGLE_HPP
#define RECTANGLE_HPP #define RECTANGLE_HPP
#include "../algorithms/coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <algorithm> #include <algorithm>
#include <cstdint> #include <cstdint>

View File

@ -29,9 +29,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define ROUTED_OPTIONS_HPP #define ROUTED_OPTIONS_HPP
#include "util/version.hpp" #include "util/version.hpp"
#include "ini_file.hpp" #include "util/ini_file.hpp"
#include "osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/any.hpp> #include <boost/any.hpp>
#include <boost/program_options.hpp> #include <boost/program_options.hpp>

View File

@ -28,10 +28,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef STATIC_GRAPH_HPP #ifndef STATIC_GRAPH_HPP
#define STATIC_GRAPH_HPP #define STATIC_GRAPH_HPP
#include "percent.hpp" #include "util/percent.hpp"
#include "shared_memory_vector_wrapper.hpp" #include "util/shared_memory_vector_wrapper.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>

View File

@ -28,19 +28,19 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef STATIC_RTREE_HPP #ifndef STATIC_RTREE_HPP
#define STATIC_RTREE_HPP #define STATIC_RTREE_HPP
#include "deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "hilbert_value.hpp" #include "util/hilbert_value.hpp"
#include "rectangle.hpp" #include "util/rectangle.hpp"
#include "shared_memory_factory.hpp" #include "datastore/shared_memory_factory.hpp"
#include "shared_memory_vector_wrapper.hpp" #include "util/shared_memory_vector_wrapper.hpp"
#include "../util/bearing.hpp" #include "util/bearing.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/mercator.hpp" #include "util/mercator.hpp"
#include "../util/osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef TRIGONOMETRY_TABLE_HPP #ifndef TRIGONOMETRY_TABLE_HPP
#define TRIGONOMETRY_TABLE_HPP #define TRIGONOMETRY_TABLE_HPP
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <cmath> #include <cmath>
#include <limits> #include <limits>

View File

@ -29,7 +29,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define TYPEDEFS_H #define TYPEDEFS_H
#include <limits> #include <limits>
#include <osrm/strong_typedef.hpp> #include "osrm/strong_typedef.hpp"
#include <cstddef> #include <cstddef>
// Necessary workaround for Windows as VS doesn't implement C99 // Necessary workaround for Windows as VS doesn't implement C99

View File

@ -28,9 +28,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef XML_RENDERER_HPP #ifndef XML_RENDERER_HPP
#define XML_RENDERER_HPP #define XML_RENDERER_HPP
#include "cast.hpp" #include "util/cast.hpp"
#include <osrm/json_container.hpp> #include "osrm/json_container.hpp"
namespace osrm namespace osrm
{ {

View File

@ -28,7 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef XOR_FAST_HASH_STORAGE_HPP #ifndef XOR_FAST_HASH_STORAGE_HPP
#define XOR_FAST_HASH_STORAGE_HPP #define XOR_FAST_HASH_STORAGE_HPP
#include "xor_fast_hash.hpp" #include "util/xor_fast_hash.hpp"
#include <limits> #include <limits>
#include <vector> #include <vector>

View File

@ -25,13 +25,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "../data_structures/query_node.hpp" #include "extractor/query_node.hpp"
#include "../data_structures/static_rtree.hpp" #include "util/static_rtree.hpp"
#include "../data_structures/edge_based_node.hpp" #include "extractor/edge_based_node.hpp"
#include "../algorithms/geospatial_query.hpp" #include "engine/geospatial_query.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <random> #include <random>
#include <iostream> #include <iostream>

View File

@ -25,10 +25,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "contractor_options.hpp" #include "contractor/contractor_options.hpp"
#include "util/version.hpp" #include "util/version.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
#include <boost/program_options.hpp> #include <boost/program_options.hpp>

View File

@ -25,22 +25,22 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "processing_chain.hpp" #include "contractor/processing_chain.hpp"
#include "contractor.hpp" #include "contractor/contractor.hpp"
#include "contractor.hpp" #include "contractor/contractor.hpp"
#include "../data_structures/deallocating_vector.hpp" #include "util/deallocating_vector.hpp"
#include "../algorithms/crc32_processor.hpp" #include "contractor/crc32_processor.hpp"
#include "../util/graph_loader.hpp" #include "util/graph_loader.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../util/lua_util.hpp" #include "util/lua_util.hpp"
#include "../util/osrm_exception.hpp" #include "util/osrm_exception.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include "../util/string_util.hpp" #include "util/string_util.hpp"
#include "../util/timing_util.hpp" #include "util/timing_util.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include <fast-cpp-csv-parser/csv.h> #include <fast-cpp-csv-parser/csv.h>
@ -55,7 +55,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <thread> #include <thread>
#include <vector> #include <vector>
#include "../util/debug_geometry.hpp" #include "util/debug_geometry.hpp"
Prepare::~Prepare() {} Prepare::~Prepare() {}

View File

@ -25,15 +25,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "description_factory.hpp" #include "engine/descriptors/description_factory.hpp"
#include "../algorithms/polyline_formatter.hpp" #include "engine/polyline_formatter.hpp"
#include "../algorithms/coordinate_calculation.hpp" #include "util/coordinate_calculation.hpp"
#include "../data_structures/internal_route_result.hpp" #include "engine/internal_route_result.hpp"
#include "../data_structures/turn_instructions.hpp" #include "extractor/turn_instructions.hpp"
#include "../util/container.hpp" #include "util/container.hpp"
#include "../util/integer_range.hpp" #include "util/integer_range.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
DescriptionFactory::DescriptionFactory() : entire_length(0) { via_indices.push_back(0); } DescriptionFactory::DescriptionFactory() : entire_length(0) { via_indices.push_back(0); }

View File

@ -25,12 +25,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "douglas_peucker.hpp" #include "engine/douglas_peucker.hpp"
#include "../data_structures/segment_information.hpp" #include "engine/segment_information.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <cmath> #include <cmath>
#include <algorithm> #include <algorithm>

View File

@ -33,30 +33,30 @@ class named_mutex;
} }
} }
#include "osrm_impl.hpp" #include "engine/osrm_impl.hpp"
#include "../plugins/distance_table.hpp" #include "engine/plugins/distance_table.hpp"
#include "../plugins/hello_world.hpp" #include "engine/plugins/hello_world.hpp"
#include "../plugins/nearest.hpp" #include "engine/plugins/nearest.hpp"
#include "../plugins/timestamp.hpp" #include "engine/plugins/timestamp.hpp"
#include "../plugins/trip.hpp" #include "engine/plugins/trip.hpp"
#include "../plugins/viaroute.hpp" #include "engine/plugins/viaroute.hpp"
#include "../plugins/match.hpp" #include "engine/plugins/match.hpp"
#include "../server/data_structures/datafacade_base.hpp" #include "engine/datafacade/datafacade_base.hpp"
#include "../server/data_structures/internal_datafacade.hpp" #include "engine/datafacade/internal_datafacade.hpp"
#include "../server/data_structures/shared_barriers.hpp" #include "engine/datafacade/shared_barriers.hpp"
#include "../server/data_structures/shared_datafacade.hpp" #include "engine/datafacade/shared_datafacade.hpp"
#include "../util/make_unique.hpp" #include "util/make_unique.hpp"
#include "../util/routed_options.hpp" #include "util/routed_options.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <boost/interprocess/sync/named_condition.hpp> #include <boost/interprocess/sync/named_condition.hpp>
#include <boost/interprocess/sync/scoped_lock.hpp> #include <boost/interprocess/sync/scoped_lock.hpp>
#include <osrm/route_parameters.hpp> #include "osrm/route_parameters.hpp"
#include <osrm/libosrm_config.hpp> #include "osrm/libosrm_config.hpp"
#include <osrm/osrm.hpp> #include "osrm/osrm.hpp"
#include <algorithm> #include <algorithm>
#include <fstream> #include <fstream>

View File

@ -25,12 +25,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "phantom_node.hpp" #include "engine/phantom_node.hpp"
#include "../typedefs.h" #include "util/typedefs.hpp"
#include "travel_mode.hpp" #include "extractor/travel_mode.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
#include <limits> #include <limits>

View File

@ -25,10 +25,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "polyline_compressor.hpp" #include "engine/polyline_compressor.hpp"
#include "../data_structures/segment_information.hpp" #include "engine/segment_information.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
std::string PolylineCompressor::encode_vector(std::vector<int> &numbers) const std::string PolylineCompressor::encode_vector(std::vector<int> &numbers) const
{ {

View File

@ -25,12 +25,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "polyline_formatter.hpp" #include "engine/polyline_formatter.hpp"
#include "polyline_compressor.hpp" #include "engine/polyline_compressor.hpp"
#include "../data_structures/segment_information.hpp" #include "engine/segment_information.hpp"
#include <osrm/coordinate.hpp> #include "osrm/coordinate.hpp"
osrm::json::String osrm::json::String
PolylineFormatter::printEncodedString(const std::vector<SegmentInformation> &polyline) const PolylineFormatter::printEncodedString(const std::vector<SegmentInformation> &polyline) const

View File

@ -30,9 +30,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <boost/fusion/include/at_c.hpp> #include <boost/fusion/include/at_c.hpp>
#include <boost/spirit/include/qi.hpp> #include <boost/spirit/include/qi.hpp>
#include <osrm/route_parameters.hpp> #include "osrm/route_parameters.hpp"
#include "../algorithms/polyline_compressor.hpp" #include "engine/polyline_compressor.hpp"
RouteParameters::RouteParameters() RouteParameters::RouteParameters()
: zoom_level(18), print_instructions(false), alternate_route(true), geometry(true), : zoom_level(18), print_instructions(false), alternate_route(true), geometry(true),

View File

@ -25,9 +25,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "search_engine_data.hpp" #include "engine/search_engine_data.hpp"
#include "binary_heap.hpp" #include "util/binary_heap.hpp"
void SearchEngineData::InitializeOrClearFirstThreadLocalStorage(const unsigned number_of_nodes) void SearchEngineData::InitializeOrClearFirstThreadLocalStorage(const unsigned number_of_nodes)
{ {

View File

@ -25,8 +25,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include "compressed_edge_container.hpp" #include "extractor/compressed_edge_container.hpp"
#include "../util/simple_logger.hpp" #include "util/simple_logger.hpp"
#include <boost/assert.hpp> #include <boost/assert.hpp>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>

Some files were not shown because too many files have changed in this diff Show More