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