From 1b0d8739c1486d6a8c77108f057332ca17429e3b Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Fri, 15 May 2015 00:34:34 +0200 Subject: [PATCH] Increase max distance to 1100 to fix unrelated test cases --- data_structures/static_rtree.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/static_rtree.hpp b/data_structures/static_rtree.hpp index 929ceb8bd..f7a959a20 100644 --- a/data_structures/static_rtree.hpp +++ b/data_structures/static_rtree.hpp @@ -646,7 +646,7 @@ class StaticRTree const FixedPointCoordinate &input_coordinate, std::vector &result_phantom_node_vector, const unsigned max_number_of_phantom_nodes, - const float max_distance = 1000) + const float max_distance = 1100) { unsigned inspected_elements = 0; unsigned number_of_elements_from_big_cc = 0;