[routing] add altitude for transit in RIT

This commit is contained in:
Mikhail Gorbushin 2019-05-17 20:15:52 +03:00 committed by Vlad Mihaylenko
parent cabbc20ee4
commit 645deebd5f
2 changed files with 3 additions and 4 deletions

View file

@ -115,8 +115,7 @@ unique_ptr<IndexRouter> CreateVehicleRouter(DataSource & dataSource,
auto countryParentGetter = std::make_unique<storage::CountryParentGetter>();
CHECK(countryParentGetter, ());
bool const loadAltitudes =
vehicleType == VehicleType::Pedestrian || vehicleType == VehicleType::Bicycle;
bool const loadAltitudes = vehicleType != VehicleType::Car;
auto indexRouter = make_unique<IndexRouter>(vehicleType, loadAltitudes,
*countryParentGetter, countryFileGetter,
getMwmRectByName, numMwmIds,

View file

@ -44,7 +44,7 @@ UNIT_TEST(Moscow_NoSubwayTest)
MercatorBounds::FromLatLon(55.73470, 37.62617));
TEST_EQUAL(routeResult.second, RouterResultCode::NoError, ());
integration::TestRouteLength(*routeResult.first, 604.847);
integration::TestRouteLength(*routeResult.first, 612.664);
CHECK(routeResult.first, ());
integration::CheckSubwayAbsent(*routeResult.first);
@ -139,7 +139,7 @@ UNIT_TEST(Vashington_FoggyToShaw)
TEST_EQUAL(routeResult.second, RouterResultCode::NoError, ());
integration::TestRouteLength(*routeResult.first, 6102.92);
integration::TestRouteLength(*routeResult.first, 6318.54);
CHECK(routeResult.first, ());
integration::CheckSubwayExistence(*routeResult.first);