Skip to content

Commit 69db219

Browse files
TheMarexPatrick Niklaus
authored andcommitted
Remove unused definition in contractor
1 parent 17ac731 commit 69db219

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

include/contractor/contractor.hpp

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
#define CONTRACTOR_CONTRACTOR_HPP
3030

3131
#include "contractor/contractor_config.hpp"
32-
#include "contractor/query_edge.hpp"
33-
#include "extractor/edge_based_edge.hpp"
34-
#include "extractor/edge_based_node_segment.hpp"
35-
#include "util/deallocating_vector.hpp"
36-
#include "util/typedefs.hpp"
37-
38-
#include <string>
39-
#include <vector>
40-
41-
#include <cstddef>
4232

4333
namespace osrm
4434
{
@@ -49,23 +39,13 @@ namespace contractor
4939
class Contractor
5040
{
5141
public:
52-
using EdgeData = QueryEdge::EdgeData;
53-
5442
explicit Contractor(const ContractorConfig &config_) : config{config_} {}
5543

5644
Contractor(const Contractor &) = delete;
5745
Contractor &operator=(const Contractor &) = delete;
5846

5947
int Run();
6048

61-
protected:
62-
void ContractGraph(const unsigned max_edge_id,
63-
util::DeallocatingVector<extractor::EdgeBasedEdge> &edge_based_edge_list,
64-
util::DeallocatingVector<QueryEdge> &contracted_edge_list,
65-
std::vector<EdgeWeight> &&node_weights,
66-
std::vector<bool> &is_core_node,
67-
std::vector<float> &inout_node_levels) const;
68-
6949
private:
7050
ContractorConfig config;
7151
};

0 commit comments

Comments
 (0)