Uses of Class
net.bmahe.genetics4j.moo.nsga2.spec.TournamentNSGA2Selection
Packages that use TournamentNSGA2Selection
-
Uses of TournamentNSGA2Selection in net.bmahe.genetics4j.moo.nsga2.impl
Fields in net.bmahe.genetics4j.moo.nsga2.impl declared as TournamentNSGA2SelectionModifier and TypeFieldDescriptionprivate final TournamentNSGA2Selection
<T> TournamentNSGA2Selector.tournamentNSGA2Selection
Constructors in net.bmahe.genetics4j.moo.nsga2.impl with parameters of type TournamentNSGA2SelectionModifierConstructorDescriptionTournamentNSGA2Selector
(RandomGenerator _randomGenerator, TournamentNSGA2Selection<T> _tournamentNSGA2Selection) -
Uses of TournamentNSGA2Selection in net.bmahe.genetics4j.moo.nsga2.spec
Subclasses of TournamentNSGA2Selection in net.bmahe.genetics4j.moo.nsga2.specModifier and TypeClassDescriptionfinal class
ImmutableTournamentNSGA2Selection<T extends Comparable<T>>
Immutable implementation ofTournamentNSGA2Selection
.Methods in net.bmahe.genetics4j.moo.nsga2.spec that return TournamentNSGA2SelectionModifier 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 NumberMethods in net.bmahe.genetics4j.moo.nsga2.spec with parameters of type TournamentNSGA2SelectionModifier 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.