1
|
|
package net.bmahe.genetics4j.core.spec; |
2
|
|
|
3
|
|
import java.util.Collection; |
4
|
|
import java.util.Collections; |
5
|
|
import java.util.Comparator; |
6
|
|
import java.util.List; |
7
|
|
import java.util.Optional; |
8
|
|
import java.util.function.Supplier; |
9
|
|
|
10
|
|
import org.apache.commons.lang3.Validate; |
11
|
|
import org.immutables.value.Value; |
12
|
|
|
13
|
|
import net.bmahe.genetics4j.core.Genotype; |
14
|
|
import net.bmahe.genetics4j.core.combination.AllCasesGenotypeCombinator; |
15
|
|
import net.bmahe.genetics4j.core.combination.GenotypeCombinator; |
16
|
|
import net.bmahe.genetics4j.core.spec.chromosome.ChromosomeSpec; |
17
|
|
import net.bmahe.genetics4j.core.spec.combination.CombinationPolicy; |
18
|
|
import net.bmahe.genetics4j.core.spec.mutation.MutationPolicy; |
19
|
|
import net.bmahe.genetics4j.core.spec.replacement.Elitism; |
20
|
|
import net.bmahe.genetics4j.core.spec.replacement.ReplacementStrategy; |
21
|
|
import net.bmahe.genetics4j.core.spec.selection.SelectionPolicy; |
22
|
|
import net.bmahe.genetics4j.core.spec.selection.Tournament; |
23
|
|
import net.bmahe.genetics4j.core.termination.Termination; |
24
|
|
|
25
|
|
/** |
26
|
|
* Evolutionary Algorithm Configuration. |
27
|
|
* <p>This describe the set of strategies to use. They describe the genotype, the different policies for selection, |
28
|
|
* combination as well as mutation, and other relevant parameters |
29
|
|
* <p>Fitness computation is delegated to subclasses to better match the various ways in which they can be computed |
30
|
|
* |
31
|
|
* @param <T> Type of the fitness measurement |
32
|
|
*/ |
33
|
|
public abstract class AbstractEAConfiguration<T extends Comparable<T>> { |
34
|
|
/** |
35
|
|
* Default offspring ratio |
36
|
|
*/ |
37
|
|
public static final double DEFAULT_OFFSPRING_RATIO = 1.0; |
38
|
|
|
39
|
|
/** |
40
|
|
* Default optimization strategy |
41
|
|
*/ |
42
|
|
public static final Optimization DEFAULT_OPTIMIZATION = Optimization.MAXIMIZE; |
43
|
|
|
44
|
|
/** |
45
|
|
* Genotype of the population |
46
|
|
* |
47
|
|
* @return |
48
|
|
*/ |
49
|
|
public abstract List<ChromosomeSpec> chromosomeSpecs(); |
50
|
|
|
51
|
|
/** |
52
|
|
* Defines the policy to select the parents. The selected parents will be used for generating the new offsprings |
53
|
|
* |
54
|
|
* @return |
55
|
|
*/ |
56
|
|
public abstract SelectionPolicy parentSelectionPolicy(); |
57
|
|
|
58
|
|
/** |
59
|
|
* Defines the policy to generate new offsprings from two parents |
60
|
|
* |
61
|
|
* @return |
62
|
|
*/ |
63
|
|
public abstract CombinationPolicy combinationPolicy(); |
64
|
|
|
65
|
|
/** |
66
|
|
* Defines what mutations to be performed on the offsprings |
67
|
|
* |
68
|
|
* @return |
69
|
|
*/ |
70
|
|
public abstract List<MutationPolicy> mutationPolicies(); |
71
|
|
|
72
|
|
/** |
73
|
|
* Defines the replacement strategy |
74
|
|
* <p>The replacement strategy is what will determine the next population based on the generated and mutated |
75
|
|
* offsprings along with the current population |
76
|
|
* <p>If not specified, the default replacement strategy will be to use Elitism with tournament selection of 3 |
77
|
|
* individuals for both offsprings and survivors. The default offspring ratio is |
78
|
|
* {@link Elitism#DEFAULT_OFFSPRING_RATIO} |
79
|
|
* |
80
|
|
* @return |
81
|
|
*/ |
82
|
|
@Value.Default |
83
|
|
public ReplacementStrategy replacementStrategy() { |
84
|
1
1. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism::builder → KILLED
|
final var replacementStrategyBuilder = Elitism.builder(); |
85
|
|
|
86
|
4
1. replacementStrategy : replaced call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringRatio with receiver → SURVIVED
2. replacementStrategy : Substituted 3 with 4 → SURVIVED
3. replacementStrategy : Substituted 0.99 with 1.0 → SURVIVED
4. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringRatio → KILLED
|
replacementStrategyBuilder.offspringRatio(Elitism.DEFAULT_OFFSPRING_RATIO) |
87
|
4
1. replacementStrategy : Substituted 3 with 4 → SURVIVED
2. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/selection/Tournament::of → KILLED
3. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringSelectionPolicy → KILLED
4. replacementStrategy : replaced call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringSelectionPolicy with receiver → KILLED
|
.offspringSelectionPolicy(Tournament.of(3)) |
88
|
3
1. replacementStrategy : replaced call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::survivorSelectionPolicy with receiver → KILLED
2. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/selection/Tournament::of → KILLED
3. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::survivorSelectionPolicy → KILLED
|
.survivorSelectionPolicy(Tournament.of(3)); |
89
|
|
|
90
|
2
1. replacementStrategy : removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::build → KILLED
2. replacementStrategy : replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::replacementStrategy → KILLED
|
return replacementStrategyBuilder.build(); |
91
|
|
} |
92
|
|
|
93
|
|
/** |
94
|
|
* Post-processing of a population after it got evaluated |
95
|
|
* <p>This gives the opportunity to filter out, repair or rescore individuals |
96
|
|
* |
97
|
|
* @return Population to be used by the remaining evolution process |
98
|
|
*/ |
99
|
|
public abstract Optional<PostEvaluationProcessor<T>> postEvaluationProcessor(); |
100
|
|
|
101
|
|
/** |
102
|
|
* Defines termination condition |
103
|
|
* |
104
|
|
* @return |
105
|
|
*/ |
106
|
|
public abstract Termination<T> termination(); |
107
|
|
|
108
|
|
/** |
109
|
|
* Defines how to generate individuals |
110
|
|
* <p>If not specified, the system will rely on the chromosome factories |
111
|
|
* |
112
|
|
* @return |
113
|
|
*/ |
114
|
|
public abstract Optional<Supplier<Genotype>> genotypeGenerator(); |
115
|
|
|
116
|
|
/** |
117
|
|
* Seed the initial population with specific individuals |
118
|
|
* |
119
|
|
* @return |
120
|
|
*/ |
121
|
|
@Value.Default |
122
|
|
public Collection<Genotype> seedPopulation() { |
123
|
1
1. seedPopulation : removed call to java/util/Collections::emptyList → KILLED
|
return Collections.emptyList(); |
124
|
|
} |
125
|
|
|
126
|
|
/** |
127
|
|
* Defines how to combine the offspring chromosomes generated |
128
|
|
* <p>Combination of individuals is done on a per chromosome basis. This means some parents may generate a different |
129
|
|
* number of children for each chromosome. This method will therefore define how to take all these generated |
130
|
|
* chromosomes and combine them into offspring individuals |
131
|
|
* <p>The current default implementation is to generate as many individual as there are combinations of generated |
132
|
|
* chromosomes |
133
|
|
* |
134
|
|
* @return |
135
|
|
*/ |
136
|
|
@Value.Default |
137
|
|
public GenotypeCombinator genotypeCombinator() { |
138
|
2
1. genotypeCombinator : removed call to net/bmahe/genetics4j/core/combination/AllCasesGenotypeCombinator::<init> → KILLED
2. genotypeCombinator : replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::genotypeCombinator → KILLED
|
return new AllCasesGenotypeCombinator(); |
139
|
|
} |
140
|
|
|
141
|
|
/** |
142
|
|
* Defines how many children will be generated at each iteration. Value must be between 0 and 1 (inclusive) and |
143
|
|
* represents a fraction of the population size |
144
|
|
* |
145
|
|
* @return |
146
|
|
*/ |
147
|
|
@Value.Default |
148
|
|
public double offspringGeneratedRatio() { |
149
|
2
1. offspringGeneratedRatio : Substituted 1.0 with 2.0 → KILLED
2. offspringGeneratedRatio : replaced double return with 0.0d for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::offspringGeneratedRatio → KILLED
|
return DEFAULT_OFFSPRING_RATIO; |
150
|
|
} |
151
|
|
|
152
|
|
/** |
153
|
|
* Defines the optimization goal, whether we want to maximize the fitness or minimize it |
154
|
|
* |
155
|
|
* @return |
156
|
|
*/ |
157
|
|
@Value.Default |
158
|
|
public Optimization optimization() { |
159
|
1
1. optimization : replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::optimization → KILLED
|
return DEFAULT_OPTIMIZATION; |
160
|
|
} |
161
|
|
|
162
|
|
/** |
163
|
|
* Validates the configuration |
164
|
|
*/ |
165
|
|
@Value.Check |
166
|
|
protected void check() { |
167
|
|
Validate.isTrue(chromosomeSpecs().size() > 0, "No chromosomes were specified"); |
168
|
|
Validate.inclusiveBetween(0.0d, 1.0d, offspringGeneratedRatio()); |
169
|
|
} |
170
|
|
|
171
|
|
/** |
172
|
|
* Returns a specific chromosome spec from the genotype definition |
173
|
|
* |
174
|
|
* @param index |
175
|
|
* @return |
176
|
|
*/ |
177
|
|
public ChromosomeSpec getChromosomeSpec(final int index) { |
178
|
|
Validate.isTrue(index >= 0); |
179
|
|
Validate.isTrue(index < chromosomeSpecs().size()); |
180
|
|
|
181
|
3
1. getChromosomeSpec : replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::getChromosomeSpec → KILLED
2. getChromosomeSpec : removed call to net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::chromosomeSpecs → KILLED
3. getChromosomeSpec : removed call to java/util/List::get → KILLED
|
return chromosomeSpecs().get(index); |
182
|
|
} |
183
|
|
|
184
|
|
/** |
185
|
|
* Returns the currently number of chromosomes defined in the genotype |
186
|
|
* |
187
|
|
* @return |
188
|
|
*/ |
189
|
|
public int numChromosomes() { |
190
|
3
1. numChromosomes : replaced int return with 0 for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::numChromosomes → KILLED
2. numChromosomes : removed call to net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::chromosomeSpecs → KILLED
3. numChromosomes : removed call to java/util/List::size → KILLED
|
return chromosomeSpecs().size(); |
191
|
|
} |
192
|
|
|
193
|
|
/** |
194
|
|
* Return a comparator based on the optimization method and natural order |
195
|
|
* |
196
|
|
* @return |
197
|
|
*/ |
198
|
|
public Comparator<T> fitnessComparator() { |
199
|
|
|
200
|
7
1. fitnessComparator : removed call to java/lang/MatchException::<init> → NO_COVERAGE
2. fitnessComparator : replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::fitnessComparator → KILLED
3. fitnessComparator : removed call to net/bmahe/genetics4j/core/spec/Optimization::ordinal → KILLED
4. fitnessComparator : removed call to net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::optimization → KILLED
5. fitnessComparator : Changed switch default to be first case → KILLED
6. fitnessComparator : RemoveSwitch 0 (case value 1) → KILLED
7. fitnessComparator : RemoveSwitch 1 (case value 2) → KILLED
|
return switch (optimization()) { |
201
|
1
1. fitnessComparator : removed call to java/util/Comparator::naturalOrder → KILLED
|
case MAXIMIZE -> Comparator.naturalOrder(); |
202
|
1
1. fitnessComparator : removed call to java/util/Comparator::reverseOrder → KILLED
|
case MINIMIZE -> Comparator.reverseOrder(); |
203
|
|
}; |
204
|
|
} |
205
|
|
} |
| | Mutations |
84 |
|
1.1 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism::builder → KILLED
|
86 |
|
1.1 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringRatio → KILLED
2.2 Location : replacementStrategy Killed by : none replaced call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringRatio with receiver → SURVIVED
Covering tests
Covered by tests:
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresSelectiveRefinementTournament()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGenerationInvalid()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessInvalid()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresRandomGenerator()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullEAConfiguration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNegativeGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresPositiveNumIndividuals()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresMatchingSizes()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresRefinementComparator()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateBWhenBetter()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateAWhenBetter()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateA()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateB()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresMatchingPopulationAndFitnessSize()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqualHighValue()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqual()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualReturnsValidIndividual()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessSelectsBestFromTournament()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessWithImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithoutRefinement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithRefinementApplied()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithMinimization()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoOffspringSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoSurvivorSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoElitismSpec()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMaximizing()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:select()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:atLeastSpecified()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:selectMaxThenMin()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMinimizing()]
- net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testSystemConstruction()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testGetterMethods()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnceWithDifferentGenerations()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnce()]
- net.bmahe.genetics4j.core.mutation.SupersimpleTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.mutation.SupersimpleTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithPostEvaluationProcessor()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithBitChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithImmediateTermination()]
3.3 Location : replacementStrategy Killed by : none Substituted 3 with 4 → SURVIVED
Covering tests
Covered by tests:
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresSelectiveRefinementTournament()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGenerationInvalid()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessInvalid()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresRandomGenerator()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullEAConfiguration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNegativeGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresPositiveNumIndividuals()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresMatchingSizes()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresRefinementComparator()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateBWhenBetter()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateAWhenBetter()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateA()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateB()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresMatchingPopulationAndFitnessSize()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqualHighValue()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqual()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualReturnsValidIndividual()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessSelectsBestFromTournament()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessWithImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithoutRefinement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithRefinementApplied()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithMinimization()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoOffspringSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoSurvivorSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoElitismSpec()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMaximizing()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:select()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:atLeastSpecified()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:selectMaxThenMin()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMinimizing()]
- net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testSystemConstruction()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testGetterMethods()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnceWithDifferentGenerations()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnce()]
- net.bmahe.genetics4j.core.mutation.SupersimpleTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.mutation.SupersimpleTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithPostEvaluationProcessor()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithBitChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithImmediateTermination()]
4.4 Location : replacementStrategy Killed by : none Substituted 0.99 with 1.0 → SURVIVED
Covering tests
Covered by tests:
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresSelectiveRefinementTournament()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGenerationInvalid()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessInvalid()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresRandomGenerator()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullEAConfiguration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNegativeGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresPositiveNumIndividuals()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresMatchingSizes()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresRefinementComparator()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateBWhenBetter()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateAWhenBetter()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateA()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateB()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresMatchingPopulationAndFitnessSize()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqualHighValue()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqual()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualReturnsValidIndividual()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessSelectsBestFromTournament()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessWithImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithoutRefinement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithRefinementApplied()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithMinimization()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoOffspringSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoSurvivorSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoElitismSpec()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMaximizing()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:select()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:atLeastSpecified()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:selectMaxThenMin()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMinimizing()]
- net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testSystemConstruction()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testGetterMethods()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnceWithDifferentGenerations()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnce()]
- net.bmahe.genetics4j.core.mutation.SupersimpleTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.mutation.SupersimpleTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithPostEvaluationProcessor()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithBitChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithImmediateTermination()]
|
87 |
|
1.1 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/selection/Tournament::of → KILLED
2.2 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringSelectionPolicy → KILLED
3.3 Location : replacementStrategy Killed by : none Substituted 3 with 4 → SURVIVED
Covering tests
Covered by tests:
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:randomIsRequired()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresSelectiveRefinementTournament()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandleRequireSelection()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGenerationInvalid()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessInvalid()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:constructorRequiresRandomGenerator()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullPopulation()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:canHandle()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullEAConfiguration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNullFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresNonNegativeGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresPositiveNumIndividuals()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualRequiresMatchingSizes()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresRefinementComparator()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateBWhenBetter()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementSelectsCandidateAWhenBetter()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofMaxGeneration()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateA()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessRequiresNonEmptyFitnessScore()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRequiresCandidateB()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectRequiresMatchingPopulationAndFitnessSize()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqualHighValue()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForRefinementRandomlySelectsWhenEqual()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:randomIndividualReturnsValidIndividual()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectForFitnessSelectsBestFromTournament()]
- net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessWithImprovement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithoutRefinement()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithRefinementApplied()]
- net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.SelectiveRefinementTournamentSelectorTest]/[method:selectWithMinimization()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoOffspringSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoSurvivorSelector()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:ctorNoElitismSpec()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMaximizing()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RandomSelectionPolicyHandlerTest]/[method:select()]
- net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.TournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.replacement.ElitismImplTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.replacement.ElitismImplTest]/[method:atLeastSpecified()]
- net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:selectMaxThenMin()]
- net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.RouletteWheelSelectionPolicyHandlerTest]/[method:selectMinimizing()]
- net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMinimize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testSystemConstruction()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testGetterMethods()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnceWithDifferentGenerations()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvaluateOnce()]
- net.bmahe.genetics4j.core.mutation.SupersimpleTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.mutation.SupersimpleTest]/[method:simple()]
- net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.ProportionalTournamentSelectionPolicyHandlerTest]/[method:selectMaximize()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithPostEvaluationProcessor()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithBitChromosome()]
- net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithImmediateTermination()]
4.4 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] replaced call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::offspringSelectionPolicy with receiver → KILLED
|
88 |
|
1.1 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] replaced call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::survivorSelectionPolicy with receiver → KILLED
2.2 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/selection/Tournament::of → KILLED
3.3 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::survivorSelectionPolicy → KILLED
|
90 |
|
1.1 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/spec/replacement/Elitism$Builder::build → KILLED
2.2 Location : replacementStrategy Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::replacementStrategy → KILLED
|
123 |
|
1.1 Location : seedPopulation Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to java/util/Collections::emptyList → KILLED
|
138 |
|
1.1 Location : genotypeCombinator Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] removed call to net/bmahe/genetics4j/core/combination/AllCasesGenotypeCombinator::<init> → KILLED
2.2 Location : genotypeCombinator Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::genotypeCombinator → KILLED
|
149 |
|
1.1 Location : offspringGeneratedRatio Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] Substituted 1.0 with 2.0 → KILLED
2.2 Location : offspringGeneratedRatio Killed by : net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()] replaced double return with 0.0d for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::offspringGeneratedRatio → KILLED
|
159 |
|
1.1 Location : optimization Killed by : net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.selection.MultiTournamentsSelectionPolicyHandlerTest]/[method:randomIsRequired()] replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::optimization → KILLED
|
181 |
|
1.1 Location : getChromosomeSpec Killed by : net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()] replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::getChromosomeSpec → KILLED
2.2 Location : getChromosomeSpec Killed by : net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()] removed call to net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::chromosomeSpecs → KILLED
3.3 Location : getChromosomeSpec Killed by : net.bmahe.genetics4j.core.EASystemTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.EASystemTest]/[method:testEvolveWithIntChromosome()] removed call to java/util/List::get → KILLED
|
190 |
|
1.1 Location : numChromosomes Killed by : net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()] replaced int return with 0 for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::numChromosomes → KILLED
2.2 Location : numChromosomes Killed by : net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()] removed call to net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::chromosomeSpecs → KILLED
3.3 Location : numChromosomes Killed by : net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.evaluation.FitnessEvaluatorVirtualThreadTest]/[method:testVirtualThreadFactory()] removed call to java/util/List::size → KILLED
|
200 |
|
1.1 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] replaced return value with null for net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::fitnessComparator → KILLED
2.2 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessWithImprovement()] removed call to net/bmahe/genetics4j/core/spec/Optimization::ordinal → KILLED
3.3 Location : fitnessComparator Killed by : none removed call to java/lang/MatchException::<init> → NO_COVERAGE
4.4 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] removed call to net/bmahe/genetics4j/core/spec/AbstractEAConfiguration::optimization → KILLED
5.5 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] Changed switch default to be first case → KILLED
6.6 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] RemoveSwitch 0 (case value 1) → KILLED
7.7 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] RemoveSwitch 1 (case value 2) → KILLED
|
201 |
|
1.1 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] removed call to java/util/Comparator::naturalOrder → KILLED
|
202 |
|
1.1 Location : fitnessComparator Killed by : net.bmahe.genetics4j.core.termination.TerminationsTest.[engine:junit-jupiter]/[class:net.bmahe.genetics4j.core.termination.TerminationsTest]/[method:ofStableFitnessNoImprovement()] removed call to java/util/Comparator::reverseOrder → KILLED
|