Checking if fid is equal to INVALID_FID.

This commit is contained in:
Vladimir Byko-Ianko 2015-02-20 16:11:52 +03:00 committed by Alex Zolotarev
parent db0f5fcfdf
commit e64f6e6de4
4 changed files with 15 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#include "../../testing/testing.hpp"
#include "../testing/testing.hpp"
#include "osrm_test_tools.hpp"
@ -19,4 +19,10 @@ namespace
integration::CalculateRouteAndTestRouteLength(routerComponents, {37.409929478750627, 67.644798619710073},
{0., 0.}, {39.836562407458047, 65.774372510437971}, 253275.);
}
UNIT_TEST(UKRugbyStIvesRouteTest)
{
shared_ptr<integration::OsrmRouterComponents> routerComponents = integration::GetAllMaps();
integration::CalculateRouteAndTestRouteLength(routerComponents, {-1.2653036222483705, 61.691304855049886},
{0., 0.}, {-5.4799407508360218, 58.242809563579847}, 455902.);
}
}

View file

@ -1,6 +1,6 @@
#include "osrm_test_tools.hpp"
#include "../../testing/testing.hpp"
#include "../testing/testing.hpp"
#include "../indexer/index.hpp"

View file

@ -1,4 +1,4 @@
#include "../../testing/testing.hpp"
#include "../testing/testing.hpp"
#include "osrm_test_tools.hpp"

View file

@ -189,6 +189,9 @@ public:
for (int i = si; i != ei; i += di)
{
m_mapping.GetSegmentByIndex(i, s);
if (!s.IsValid())
continue;
auto s1 = min(s.m_pointStart, s.m_pointEnd);
auto e1 = max(s.m_pointEnd, s.m_pointStart);
@ -638,7 +641,7 @@ m2::PointD OsrmRouter::GetPointByNodeId(const size_t node_id, RoutingMappingPtrT
else
routingMapping->m_segMapping.GetSegmentByIndex(nSegs.second - 1, seg);
if (seg.m_fid == OsrmFtSegMapping::FtSeg::INVALID_FID)
if (!seg.IsValid())
return m2::PointD::Zero();
FeatureType ft;
@ -1366,6 +1369,8 @@ void OsrmRouter::GetPossibleTurns(NodeID node,
auto const range = routingMapping->m_segMapping.GetSegmentsRange(trg);
OsrmFtSegMapping::FtSeg seg;
routingMapping->m_segMapping.GetSegmentByIndex(range.first, seg);
if (!seg.IsValid())
continue;
FeatureType ft;
Index::FeaturesLoaderGuard loader(*m_pIndex, routingMapping->GetMwmId());