nushoin / RTree

N-dimensional RTree implementation in C++
Other
375 stars 107 forks source link

Fix bugs caused by large data #26

Closed seven332 closed 6 months ago

seven332 commented 2 years ago

Some cases caught by fuzz test.

Large numbers cause CalcRectVolume to return infinity. infinity - infinity == NaN. The if condition always returns false.