User talk:Chase-san/Kd-Tree
Jump to navigation
Jump to search
NullPointerExceptions and inaccuracy
Trying to test your Kd-Tree in the benchmark framework, I'm getting some NullPointerExceptions due to right.rect.getNearest(k) returning null sometimes. I don't know if it's the proper fix, I changed the relevant lines to be like:
PointKD p = right.rect.getNearest(k); if(p != null && k.distanceSq(p) < t) {
Something else is wrong also I believe, because it's only getting "88% accuracy" out of the benchmark results, so it's not finding all of the nearest neighbors correctly. --Rednaxela 22:23, 1 March 2010 (UTC)