Uses of Class
net.bmahe.genetics4j.moo.nsga2.spec.NSGA2Selection
Packages that use NSGA2Selection
-
Uses of NSGA2Selection in net.bmahe.genetics4j.moo.nsga2.impl
Fields in net.bmahe.genetics4j.moo.nsga2.impl declared as NSGA2SelectionConstructors in net.bmahe.genetics4j.moo.nsga2.impl with parameters of type NSGA2Selection -
Uses of NSGA2Selection in net.bmahe.genetics4j.moo.nsga2.spec
Subclasses of NSGA2Selection in net.bmahe.genetics4j.moo.nsga2.specModifier and TypeClassDescriptionfinal class
ImmutableNSGA2Selection<T extends Comparable<T>>
Immutable implementation ofNSGA2Selection
.Methods in net.bmahe.genetics4j.moo.nsga2.spec that return NSGA2SelectionModifier and TypeMethodDescriptionstatic <U extends Number & Comparable<U>>
NSGA2Selection<FitnessVector<U>> NSGA2Selection.ofFitnessVector
(int numberObjectives) Factory method to instantiate a NSGA2Selection when fitness is defined as a FitnessVector of a Numberstatic <U extends Number & Comparable<U>>
NSGA2Selection<FitnessVector<U>> NSGA2Selection.ofFitnessVector
(int numberObjectives, Comparator<Genotype> deduplicate) Factory method to instantiate a NSGA2Selection when fitness is defined as a FitnessVector of a NumberMethods in net.bmahe.genetics4j.moo.nsga2.spec with parameters of type NSGA2SelectionModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
ImmutableNSGA2Selection<T> ImmutableNSGA2Selection.copyOf
(NSGA2Selection<T> instance) Creates an immutable copy of aNSGA2Selection
value.final NSGA2Selection.Builder
<T> ImmutableNSGA2Selection.Builder.from
(NSGA2Selection<T> instance) Fill a builder with attribute values from the providedNSGA2Selection
instance.