Uses of Class
net.bmahe.genetics4j.moo.nsga2.spec.TournamentNSGA2Selection
-
Uses of TournamentNSGA2Selection in net.bmahe.genetics4j.moo.nsga2.impl
Modifier and TypeFieldDescriptionprivate final TournamentNSGA2Selection
<T> TournamentNSGA2Selector.tournamentNSGA2Selection
ModifierConstructorDescriptionTournamentNSGA2Selector
(RandomGenerator _randomGenerator, TournamentNSGA2Selection<T> _tournamentNSGA2Selection) -
Uses of TournamentNSGA2Selection in net.bmahe.genetics4j.moo.nsga2.spec
Modifier and TypeClassDescriptionfinal class
ImmutableTournamentNSGA2Selection<T extends Comparable<T>>
Immutable implementation ofTournamentNSGA2Selection
.Modifier and TypeMethodDescriptionstatic <U extends Number & Comparable<U>>
TournamentNSGA2Selection<FitnessVector<U>> TournamentNSGA2Selection.ofFitnessVector
(int numberObjectives, int numberCandidates) Factory method to instantiate a Tournament based NSGA2 selection when fitness is defined as a FitnessVector of a Numberstatic <U extends Number & Comparable<U>>
TournamentNSGA2Selection<FitnessVector<U>> TournamentNSGA2Selection.ofFitnessVector
(int numberObjectives, int numberCandidates, Comparator<Genotype> deduplicate) Factory method to instantiate a Tournament based NSGA2 selection when fitness is defined as a FitnessVector of a NumberModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
ImmutableTournamentNSGA2Selection<T> ImmutableTournamentNSGA2Selection.copyOf
(TournamentNSGA2Selection<T> instance) Creates an immutable copy of aTournamentNSGA2Selection
value.ImmutableTournamentNSGA2Selection.Builder.from
(TournamentNSGA2Selection<T> instance) Fill a builder with attribute values from the providedTournamentNSGA2Selection
instance.