I am looking for a C++ library that allows to efficiently find the k-nearest neighbors of a point in a point set, using the squared pseudo norm :

where my third coordinate may or may not have a minus sign in its squared norm. Alternatively, I can consider a 4D space where the third component always has positive sign and the fourth one always a negative sign.
The documentation of the ANN library states that it can use any "Minkowski" metric. The metric above is the definition of a Minkowski metric (in the sense of Wolfram Mathworld , but not in ANN's sense). However, ANN seems flexible and only seems to require a "+" and "-" operator (ANN documentation, page 14), but they are not defined per component but globally.
Has anyone ever generalized ANN to handle such a case ? Is-it trivial ? Doesn't it screw up the kd-tree ? Does another library exist for that ?
Thanks!