remove broken assert
This commit is contained in:
parent
2706a0bec1
commit
dd4461d473
@ -507,10 +507,6 @@ class StaticRTree : boost::noncopyable
|
|||||||
m_search_tree[0].minimum_bounding_rectangle.GetMinDist(input_coordinate);
|
m_search_tree[0].minimum_bounding_rectangle.GetMinDist(input_coordinate);
|
||||||
traversal_queue.emplace(0, current_min_dist);
|
traversal_queue.emplace(0, current_min_dist);
|
||||||
|
|
||||||
BOOST_ASSERT_MSG(std::numeric_limits<double>::epsilon() >
|
|
||||||
std::abs(traversal_queue.top().min_dist),
|
|
||||||
"Root element in NN Search has min dist != 0.");
|
|
||||||
|
|
||||||
while (!traversal_queue.empty())
|
while (!traversal_queue.empty())
|
||||||
{
|
{
|
||||||
const QueryCandidate current_query_node = traversal_queue.top();
|
const QueryCandidate current_query_node = traversal_queue.top();
|
||||||
|
Loading…
Reference in New Issue
Block a user