PR fixes.

This commit is contained in:
Lev Dragunov 2015-06-19 17:24:07 +03:00 committed by Alex Zolotarev
parent cdb51bc8e7
commit b329ee53bf
2 changed files with 3 additions and 4 deletions

View file

@ -27,7 +27,7 @@ namespace
}
// Strange asserts near Cupertino test
UNIT_TEST(CaliforniaCupertionFindPhantomAssetText)
UNIT_TEST(CaliforniaCupertinoFindPhantomAssertTest)
{
integration::CalculateRouteAndTestRouteLength(integration::GetAllMaps(),
{-122.03448, 40.29689}, {0., 0.},

View file

@ -426,13 +426,12 @@ void OsrmFtSegBackwardIndex::Construct(OsrmFtSegMapping & mapping, const uint32_
TNodesList & nodesList = m_nodeIds.back();
size_t const foundNodes = nodesList.size();
sort(nodesList.begin(), nodesList.end());
auto const endIt = unique(nodesList.begin(), nodesList.end());
nodesList.erase(endIt, nodesList.end());
nodesList.erase(unique(nodesList.begin(), nodesList.end()), nodesList.end());
removedNodes += foundNodes - nodesList.size();
}
}
LOG(LINFO, ("Backward index constructor removes", removedNodes, "duplicates."));
LOG(LDEBUG, ("Backward index constructor removed", removedNodes, "duplicates."));
// Pack and save index
succinct::rs_bit_vector(inIndex).swap(m_rankIndex);