Let's consider that for a given problem, a configuration is a vector of several hundred dimensions in the problem space. A score can be assigned to each configuration. An optimal solution to the problem is a configuration with a score of 1. The search space is manifestly too large to explore exhaustively in search of an optimal solution.
In this particular instance, I am not trying to find a solution, I have at my disposal various heuristics (simulated-annealing, ant colonies, etc) that serve me well on that end. However, I want to understand and characterize the search space better. So far, what I have attempted, is to generate some configurations randomly. How could I quantify how representative the sampling is? Do you think I am using the right approach? And finally, how would you suggest that I proceed further?