Open
Description
One drawback of the grid-search algorithm is its lack of exploration of the search-space if the number of iterations is much smaller, than the search-space. The grid-search begins in a "corner" of the search-space and continues step by step along paths, that are close to already explored paths.
One way, that might improve the exploration characteristics is to follow another path through the search-space in form of space-filling curves. This could be something like a Hilbert-curve or a Z-order curve.
I often see those space-filling curves applied to a two dimensional space. To apply those algorithms in GFO it is important, that they work in n dimensions and not just in two.