added reading cell storage in customizer

This commit is contained in:
Michael Krasnyk
2017-03-07 15:43:41 +01:00
committed by Patrick Niklaus
parent ec3cda32fa
commit dff8c48842
4 changed files with 26 additions and 2 deletions
+3 -2
View File
@@ -74,10 +74,11 @@ int Customizer::Run(const CustomizationConfig &config)
<< edge_based_graph->GetNumberOfEdges() << " edges, "
<< edge_based_graph->GetNumberOfNodes() << " nodes";
osrm::partition::MultiLevelPartition mlp;
partition::MultiLevelPartition mlp;
partition::io::read(config.mld_partition_path, mlp);
partition::CellStorage storage(mlp, *edge_based_graph);
partition::CellStorage storage;
partition::io::read(config.mld_storage_path, storage);
TIMER_STOP(loading_data);
util::Log() << "Loading partition data took " << TIMER_SEC(loading_data) << " seconds";