From ed830e0d87b1ec7f2d9b1c0b7df338c36dfc446d Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Wed, 18 Sep 2019 17:46:02 +0300 Subject: [PATCH] Fixed logic error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Была напугана. Извините. --- routing/base/followed_polyline.cpp | 2 +- routing/route.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index f7aa020708..b241446b93 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -253,7 +253,7 @@ FollowedPolyline::UpdatedProjection FollowedPolyline::GetClosestMatchedProjectio if (dp >= minDistUnmatched && dp >= minDist) continue; - if (std::binary_search(m_unmatchedSegmentIndexes.begin(), m_unmatchedSegmentIndexes.end(), it.m_ind)) + if (!std::binary_search(m_unmatchedSegmentIndexes.begin(), m_unmatchedSegmentIndexes.end(), it.m_ind)) { if (minDist > dp) // overwrite best match for matched segment { diff --git a/routing/route.cpp b/routing/route.cpp index 69530a2739..3c123e1c9d 100644 --- a/routing/route.cpp +++ b/routing/route.cpp @@ -256,7 +256,7 @@ Route::MovedIteratorInfo Route::MoveIteratorToReal(location::GpsInfo const & inf info.m_longitude, info.m_latitude, max(m_routingSettings.m_matchingThresholdM, info.m_horizontalAccuracy)); auto resUpdate = m_poly.UpdateMatchedProjection(rect); - return MovedIteratorInfo{resUpdate.updatedProjection, resUpdate.closerToFake}; + return MovedIteratorInfo{resUpdate.updatedProjection, resUpdate.closerToUnmatched}; } double Route::GetPolySegAngle(size_t ind) const