(DataPoint dp)
| 269 | } |
| 270 | |
| 271 | @Override |
| 272 | public double getScore(DataPoint dp) |
| 273 | { |
| 274 | Vec x = dp.getNumericalValues(); |
| 275 | return score(x, k.getQueryInfo(x)); |
| 276 | } |
| 277 | |
| 278 | private double score(Vec x, List<Double> qi) |
| 279 | { |
nothing calls this directly
no test coverage detected