From 44fe43eaed04d31c627646e66e4a0203692c7669 Mon Sep 17 00:00:00 2001 From: Kajari Ghosh Date: Wed, 5 Sep 2018 13:58:45 -0400 Subject: [PATCH] Revert "Round network distance to deci-meter to retain previous behavior" This reverts commit c0124f7d77e521f38714f7874d298884bed31481. --- src/engine/routing_algorithms/map_matching.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/engine/routing_algorithms/map_matching.cpp b/src/engine/routing_algorithms/map_matching.cpp index 72b89d77a..daefc04c9 100644 --- a/src/engine/routing_algorithms/map_matching.cpp +++ b/src/engine/routing_algorithms/map_matching.cpp @@ -252,8 +252,6 @@ SubMatchingList mapMatching(SearchEngineData &engine_working_data, target_phantom, weight_upper_bound); - network_distance = std::round(network_distance*10)/10; - // get distance diff between loc1/2 and locs/s_prime const auto d_t = std::abs(network_distance - haversine_distance);