Hi, thanks for making this.
One confusion I'm having:
Initialize the OSRM engine with a preprocessed OSRM data file (e.g., generated via osrm-extract and osrm-contract):
So that would make the algorithm used CH :: Contraction Hierarchies, not MLD :: Multilevel Dijkstra
But the code snippet says MLD:
let engine = OsrmEngine::new("/path/to/france-latest.osrm", Algorithm::MLD)
Is it safe to assume that's a typo and we have to set Algorithm::CH instead ?
Hi, thanks for making this.
One confusion I'm having:
So that would make the algorithm used CH :: Contraction Hierarchies, not MLD :: Multilevel Dijkstra
But the code snippet says MLD:
Is it safe to assume that's a typo and we have to set
Algorithm::CHinstead ?