I am trying to determine the optimal search strategy for the problem stated below.
I have to search a raster in order to localize an object with unknown position.
I assume that the optimal route to search for this object can be solved using TSP, if there is no further information about the objects location. In this case the probability of the object beeing in a certain grid is 1/#numberOfGrids (Figure 1) Uniform location distribution
In contrast to this "simple" setting I now assume that we have knowledge about the probability of the object beeing in a certain grid (Figure 2). New location distribution
Starting at any point on this raster, the search process stops as soon as the object is found or after all grids have been searched. Does anyone know an algorithm to solve such problems?