forked from organicmaps/organicmaps
[generator] Use adaptive roads cache size
This commit is contained in:
parent
3c6829c6a8
commit
b774757ca6
1 changed files with 5 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue