private List<Configuration> createNewSeedsToRetry() {
            Configuration someFailingConfig = this.failingConfigurations.iterator().next();
            int newSeed = someFailingConfig.seed * ConfigurationDefaults.SEED_FACTOR;
            List<Configuration> retryWithOtherSeeds = new LinkedList<>();
            for (int i = 0; i < 10; i++) {