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.tournamentNSGA2SelectionConstructors 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 classImmutableTournamentNSGA2Selection<T extends Comparable<T>>Immutable implementation ofTournamentNSGA2Selection.Methods in net.bmahe.genetics4j.moo.nsga2.spec that return TournamentNSGA2SelectionModifier and TypeMethodDescriptionImmutableTournamentNSGA2Selection.Builder.build()Builds a newTournamentNSGA2Selection.static <T extends Comparable<T>>
TournamentNSGA2Selection<T> ImmutableTournamentNSGA2Selection.copyOf(TournamentNSGA2Selection<T> instance) Creates an immutable copy of aTournamentNSGA2Selectionvalue.static <T extends Comparable<T>>
TournamentNSGA2Selection<T> ImmutableTournamentNSGA2Selection.of(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates) Construct a new immutableTournamentNSGA2Selectioninstance.static <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>>
TournamentNSGA2Selection<T> ImmutableTournamentNSGA2Selection.copyOf(TournamentNSGA2Selection<T> instance) Creates an immutable copy of aTournamentNSGA2Selectionvalue.ImmutableTournamentNSGA2Selection.Builder.from(TournamentNSGA2Selection<T> instance) Fill a builder with attribute values from the providedTournamentNSGA2Selectioninstance.