Returns a list of energy values sampled from the entire search space.
Future<List<num>> sampleEnergy({ int sampleSize = 100, }) async => List<num>.generate( sampleSize, (_) => next(), );