File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff 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
4333namespace osrm
4434{
@@ -49,23 +39,13 @@ namespace contractor
4939class 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};
You can’t perform that action at this time.
0 commit comments