Fix ambiguity in edges by using names lexicographical order

This commit is contained in:
Michael Krasnyk 2016-07-05 20:08:21 +02:00 committed by Moritz Kobitzsch
parent b4c78f9c38
commit fa80197df0
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Fixed an issue that would result in segfaults for viaroutes with an invalid intermediate segment when u-turns were allowed at the via-location
- Fixed an issue that could result in segfaults when querying roads that could require looping back to the start of a way while using a core factor
- Fixed an issue that could break some testcases when using a core factor
- Fixed an issue with parallel edges that could result in weird routes
# 5.3.2
Changes from 5.3.1

View File

@ -1,8 +1,8 @@
#include "extractor/extractor_callbacks.hpp"
#include "extractor/external_memory_node.hpp"
#include "extractor/extraction_containers.hpp"
#include "extractor/extraction_node.hpp"
#include "extractor/extraction_way.hpp"
#include "extractor/extractor_callbacks.hpp"
#include "extractor/restriction.hpp"
#include "util/for_each_pair.hpp"