Skip to content

Commit 5b115a2

Browse files
committed
(src/include) Adjusting code
- Removing references to vroom - Fixing filenames on the license
1 parent fcf673e commit 5b115a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+61
-450
lines changed

include/c_common/time_msg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: time_msg.h
3+
File: time_msg.h
44
55
Copyright (c) 2015 pgRouting developers
66

include/c_types/short_vehicle_rt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*PGR-GNU*****************************************************************
2-
File: Short_vehicle_rt.h
2+
File: short_vehicle_rt.h
33
44
Copyright (c) 2015 Celia Virginia Vergara Castillo
55

include/cpp_common/assert.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: assert.hpp
3+
File: assert.hpp
44
55
Copyright 2015~ Vicky Vergara <[email protected]>
66
Copyright 2014 Stephen Woodbridge <[email protected]>

include/cpp_common/base_matrix.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: base_matrix.hpp
3+
File: base_matrix.hpp
44
55
Copyright (c) 2015 pgRouting developers
66

include/cpp_common/check_get_data.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
*
3-
FILE: check_get_data.hpp
3+
File: check_get_data.hpp
44
55
Copyright (c) 2024 pgRouting developers
66

include/cpp_common/identifier.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: identifier.hpp
3+
File: identifier.hpp
44
55
Copyright (c) 2017 Celia Virginia Vergara Castillo
66

include/cpp_common/identifiers.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: identifiers.hpp
3+
File: identifiers.hpp
44
55
Generated with Template by:
66
Copyright (c) 2015 pgRouting developers
@@ -56,16 +56,16 @@ class Identifiers {
5656

5757
//! @name constructors
5858
//@{
59-
Identifiers<T>() = default;
60-
Identifiers<T>(const std::set<T>& data) {
59+
Identifiers() = default;
60+
explicit Identifiers(const std::set<T>& data) {
6161
m_ids = data;
6262
}
6363

6464
/* @brief initializes with {1 ~ number}
6565
*
6666
* @params [in] number
6767
*/
68-
explicit Identifiers<T>(const size_t number) {
68+
explicit Identifiers(const size_t number) {
6969
size_t i(0);
7070
std::generate_n(std::inserter(m_ids, m_ids.begin()),
7171
number,

include/cpp_common/interruption.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: interruption.hpp
3+
File: interruption.hpp
44
55
Copyright (c) 2015 pgRouting developers
66

include/cpp_common/messages.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*PGR-GNU*****************************************************************
22
3-
FILE: messages.hpp
3+
File: messages.hpp
44
55
Copyright (c) 2015 pgRouting developers
66

include/cpp_common/pgdata_getters.hpp

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ extern "C" {
4949
#include "cpp_common/time_multipliers_t.hpp"
5050
#include "cpp_common/vehicle_t.hpp"
5151

52-
#include "cpp_common/vroom_break_t.hpp"
53-
#include "cpp_common/vroom_job_t.hpp"
54-
#include "cpp_common/vroom_matrix_t.hpp"
55-
#include "cpp_common/vroom_shipment_t.hpp"
56-
#include "cpp_common/vroom_time_window_t.hpp"
57-
#include "cpp_common/vroom_vehicle_t.hpp"
58-
5952
namespace vrprouting {
6053
namespace pgget {
6154
namespace pickdeliver {
@@ -74,27 +67,6 @@ std::vector<Time_multipliers_t> get_timeMultipliers(const std::string&, bool);
7467

7568
} // namespace pickdeliver
7669

77-
namespace vroom {
78-
79-
/** @brief Reads the VROOM matrix */
80-
std::vector<Vroom_matrix_t> get_matrix(const std::string&, bool);
81-
82-
/** @brief Reads the VROOM breaks */
83-
std::vector<Vroom_break_t> get_breaks(const std::string&, bool);
84-
85-
/** @brief Reads the VROOM time windows */
86-
std::map<std::pair<Idx, char>, std::vector<::vroom::TimeWindow>> get_timewindows(const std::string&, bool, bool);
87-
88-
/** @brief Reads the VROOM jobs */
89-
std::vector<Vroom_job_t> get_jobs(const std::string&, bool);
90-
91-
/** @brief Reads the VROOM shipments */
92-
std::vector<Vroom_shipment_t> get_shipments(const std::string&, bool);
93-
94-
/** @brief Reads the VROOM vehicles */
95-
std::vector<Vroom_vehicle_t> get_vehicles(const std::string&, bool);
96-
97-
} // namespace vroom
9870
} // namespace pgget
9971
} // namespace vrprouting
10072

0 commit comments

Comments
 (0)