[generator] Use adaptive roads cache size

This commit is contained in:
Denis Levchenko 2020-08-21 18:07:18 +03:00 committed by Vladimir Byko-Ianko
parent 3c6829c6a8
commit b774757ca6

View file

@ -528,12 +528,13 @@ void FillWeights(string const & path, string const & mwmFile, string const & cou
shared_ptr<routing::VehicleModelInterface> vehicleModel =
routing::CarModelFactory(countryParentNameGetterFn).GetVehicleModelForCountry(country);
routing::IndexGraph graph(make_shared<routing::Geometry>(
routing::GeometryLoader::CreateFromFile(mwmFile, vehicleModel)),
routing::EdgeEstimator::Create(routing::VehicleType::Car, *vehicleModel,
nullptr /* trafficStash */));
MwmValue mwmValue(LocalCountryFile(path, platform::CountryFile(country), 0 /* version */));
uint32_t mwmNumRoads = DeserializeIndexGraphNumRoads(mwmValue, routing::VehicleType::Car);
routing::IndexGraph graph(make_shared<routing::Geometry>(
routing::GeometryLoader::CreateFromFile(mwmFile, vehicleModel), mwmNumRoads),
routing::EdgeEstimator::Create(routing::VehicleType::Car, *vehicleModel,
nullptr /* trafficStash */));
DeserializeIndexGraph(mwmValue, routing::VehicleType::Car, graph);
map<routing::Segment, map<routing::Segment, routing::RouteWeight>> weights;