You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edge-based-graph expansion was moved into osrm-extract by simply transposing the code from osrm-prepare.
The code is inefficient, in that it writes the node-based graph to disk, then re-reads it, and performs edge expansion. Now that all these steps happen inside osrm-extract, there are some steps that can just stay in memory, rather than going via intermediate files.
This would save some IO, and remove a few of the output files.
The code that was moved from osrm-prepare starts here:
Edge-based-graph expansion was moved into
osrm-extract
by simply transposing the code fromosrm-prepare
.The code is inefficient, in that it writes the node-based graph to disk, then re-reads it, and performs edge expansion. Now that all these steps happen inside
osrm-extract
, there are some steps that can just stay in memory, rather than going via intermediate files.This would save some IO, and remove a few of the output files.
The code that was moved from
osrm-prepare
starts here:osrm-backend/src/extractor/extractor.cpp
Line 253 in 54ee76b
The text was updated successfully, but these errors were encountered: