From 1069861cbec4a0f0c4c4d233db60c3a3426bf26a Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Tue, 29 Jan 2019 12:49:56 +0300 Subject: [PATCH] [routing] Delete HeuristicCostEstimate from IndexGraph --- routing/index_graph.cpp | 6 ------ routing/index_graph.hpp | 1 - 2 files changed, 7 deletions(-) diff --git a/routing/index_graph.cpp b/routing/index_graph.cpp index 712c0139f5..d0a8b19e2a 100644 --- a/routing/index_graph.cpp +++ b/routing/index_graph.cpp @@ -157,12 +157,6 @@ void IndexGraph::GetIngoingEdgesList(Segment const & segment, vectorCalcHeuristic(GetPoint(from, true /* front */), GetPoint(to, true /* front */))); -} - RouteWeight IndexGraph::CalcSegmentWeight(Segment const & segment) { return RouteWeight( diff --git a/routing/index_graph.hpp b/routing/index_graph.hpp index 23cbefddb2..3240ff350f 100644 --- a/routing/index_graph.hpp +++ b/routing/index_graph.hpp @@ -62,7 +62,6 @@ public: // Interface for AStarAlgorithm: void GetOutgoingEdgesList(Segment const & segment, vector & edges); void GetIngoingEdgesList(Segment const & segment, vector & edges); - RouteWeight HeuristicCostEstimate(Segment const & from, Segment const & to); void PushFromSerializer(Joint::Id jointId, RoadPoint const & rp) {