renamed: RoutingAlgorithms/* routing_algorithms/

This commit is contained in:
Dennis Luxen 2014-11-28 15:33:08 +01:00
parent 0f7cb12e97
commit 00d3676a20
5 changed files with 17 additions and 17 deletions

View File

@ -29,9 +29,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define SEARCH_ENGINE_HPP
#include "search_engine_data.hpp"
#include "../RoutingAlgorithms/AlternativePathRouting.h"
#include "../RoutingAlgorithms/ManyToManyRouting.h"
#include "../RoutingAlgorithms/ShortestPathRouting.h"
#include "../routing_algorithms/alternative_path.hpp"
#include "../routing_algorithms/many_to_many.hpp"
#include "../routing_algorithms/shortest_path.hpp"
#include <type_traits>

View File

@ -25,10 +25,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef ALTERNATIVE_PATH_ROUTING_H
#define ALTERNATIVE_PATH_ROUTING_H
#ifndef ALTERNATIVE_PATH_ROUTING_HPP
#define ALTERNATIVE_PATH_ROUTING_HPP
#include "BasicRoutingInterface.h"
#include "routing_base.hpp"
#include "../data_structures/search_engine_data.hpp"
#include "../Util/integer_range.hpp"
#include "../Util/container.hpp"
@ -901,4 +901,4 @@ template <class DataFacadeT> class AlternativeRouting final : private BasicRouti
}
};
#endif /* ALTERNATIVE_PATH_ROUTING_H */
#endif /* ALTERNATIVE_PATH_ROUTING_HPP */

View File

@ -25,10 +25,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef MANY_TO_MANY_ROUTING_H
#define MANY_TO_MANY_ROUTING_H
#ifndef MANY_TO_MANY_ROUTING_HPP
#define MANY_TO_MANY_ROUTING_HPP
#include "BasicRoutingInterface.h"
#include "routing_base.hpp"
#include "../data_structures/search_engine_data.hpp"
#include "../typedefs.h"

View File

@ -25,8 +25,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef BASIC_ROUTING_INTERFACE_H
#define BASIC_ROUTING_INTERFACE_H
#ifndef ROUTING_BASE_HPP
#define ROUTING_BASE_HPP
#include "../data_structures/raw_route_data.hpp"
#include "../data_structures/search_engine_data.hpp"
@ -410,4 +410,4 @@ template <class DataFacadeT> class BasicRoutingInterface
}
};
#endif // BASIC_ROUTING_INTERFACE_H
#endif // ROUTING_BASE_HPP

View File

@ -25,12 +25,12 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SHORTEST_PATH_ROUTING_H
#define SHORTEST_PATH_ROUTING_H
#ifndef SHORTEST_PATH_HPP
#define SHORTEST_PATH_HPP
#include <boost/assert.hpp>
#include "BasicRoutingInterface.h"
#include "routing_base.hpp"
#include "../data_structures/search_engine_data.hpp"
#include "../Util/integer_range.hpp"
#include "../typedefs.h"
@ -332,4 +332,4 @@ template <class DataFacadeT> class ShortestPathRouting final : public BasicRouti
}
};
#endif /* SHORTEST_PATH_ROUTING_H */
#endif /* SHORTEST_PATH_HPP */