My question is similar to this one, however there are a few key differences
Given a set X of points in d dimensions and a query point q, my goal is to find the simplex span by d+1 points in X that
- has q as an interior point
- has no other point of X as an interior point
- has the smallest possible total edge length
The last condition may be altered, f.e. the smallest possible circumcircle would be fine as well.
How could I find this simplex in reasonable time? Delaunay does not yield satisfying results, as the generated simplices satisfy a global optimality condition and not my local one.
A brute force solution is possible, however I'm interested in a more elegant solution. I thought about a graph-based approach, but did not find a good solution yet. A proposal for a solution as well as links to some papers or even just keywords are warmly welcome, as I'm not that keen in Graph Theory. Preprocessing the points is possible.
