Class ImmutableNSGA2Selection<T extends Comparable<T>>
java.lang.Object
net.bmahe.genetics4j.moo.nsga2.spec.NSGA2Selection<T>
net.bmahe.genetics4j.moo.nsga2.spec.ImmutableNSGA2Selection<T>
- All Implemented Interfaces:
SelectionPolicy
@Generated(from="NSGA2Selection",
generator="Immutables")
@Generated("org.immutables.processor.ProxyProcessor")
public final class ImmutableNSGA2Selection<T extends Comparable<T>>
extends NSGA2Selection<T>
Immutable implementation of
NSGA2Selection.
Use the builder to create immutable instances:
new NSGA2Selection.Builder().
Use the static factory method to create immutable instances:
ImmutableNSGA2Selection.of().
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classImmutableNSGA2Selection.Builder<T extends Comparable<T>>Builds instances of typeNSGA2Selection.private final class -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Comparator<Genotype> private final ObjectiveDistance<T> private final Comparator<T> private ImmutableNSGA2Selection<T>.InitShimprivate final intprivate final Function<Integer, Comparator<T>> private static final byteprivate static final byteprivate static final byte -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateImmutableNSGA2Selection(int numberObjectives, Comparator<T> dominance, Comparator<Genotype> deduplicate, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance) privateImmutableNSGA2Selection(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance) private -
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
NSGA2Selection<T> copyOf(NSGA2Selection<T> instance) Creates an immutable copy of aNSGA2Selectionvalue.Comparator used for deduplication of solution prior to processingdistance()Define how to compute distances between fitness scores along their objectivesOverride the dominance operator.booleanThis instance is equal to all instances ofImmutableNSGA2Selectionthat have equal attribute values.private booleanequalsByValue(ImmutableNSGA2Selection<?> another) inthashCode()Computes a hash code from attributes:numberObjectives,dominance,deduplicate,objectiveComparator,distance.intNumber of objectivesSort T based on the objective passed as a parameterstatic <T extends Comparable<T>>
NSGA2Selection<T> of(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance) Construct a new immutableNSGA2Selectioninstance.toString()Prints the immutable valueNSGA2Selectionwith attribute values.final ImmutableNSGA2Selection<T> withDeduplicate(Comparator<Genotype> value) Copy the current immutable object by setting a present value for the optionaldeduplicateattribute.final ImmutableNSGA2Selection<T> withDeduplicate(Optional<? extends Comparator<Genotype>> optional) Copy the current immutable object by setting an optional value for thededuplicateattribute.final ImmutableNSGA2Selection<T> withDistance(ObjectiveDistance<T> value) Copy the current immutable object by setting a value for thedistanceattribute.final ImmutableNSGA2Selection<T> withDominance(Comparator<T> value) Copy the current immutable object by setting a value for thedominanceattribute.final ImmutableNSGA2Selection<T> withNumberObjectives(int value) Copy the current immutable object by setting a value for thenumberObjectivesattribute.final ImmutableNSGA2Selection<T> withObjectiveComparator(Function<Integer, Comparator<T>> value) Copy the current immutable object by setting a value for theobjectiveComparatorattribute.Methods inherited from class net.bmahe.genetics4j.moo.nsga2.spec.NSGA2Selection
builder, ofFitnessVector, ofFitnessVector
-
Field Details
-
numberObjectives
private final int numberObjectives -
dominance
-
deduplicate
-
objectiveComparator
-
distance
-
STAGE_INITIALIZING
private static final byte STAGE_INITIALIZING- See Also:
-
STAGE_UNINITIALIZED
private static final byte STAGE_UNINITIALIZED- See Also:
-
STAGE_INITIALIZED
private static final byte STAGE_INITIALIZED- See Also:
-
initShim
-
-
Constructor Details
-
ImmutableNSGA2Selection
private ImmutableNSGA2Selection(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance) -
ImmutableNSGA2Selection
-
ImmutableNSGA2Selection
private ImmutableNSGA2Selection(int numberObjectives, Comparator<T> dominance, Comparator<Genotype> deduplicate, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance)
-
-
Method Details
-
numberObjectives
public int numberObjectives()Number of objectives- Specified by:
numberObjectivesin classNSGA2Selection<T extends Comparable<T>>- Returns:
-
dominance
Override the dominance operator.If not specified, it assumes the default comparator conforms to the Pareto dominance relation
- Overrides:
dominancein classNSGA2Selection<T extends Comparable<T>>- Returns:
-
deduplicate
Comparator used for deduplication of solution prior to processingIf not specified, it defaults to not do any deduplication
- Overrides:
deduplicatein classNSGA2Selection<T extends Comparable<T>>- Returns:
-
objectiveComparator
Sort T based on the objective passed as a parameter- Specified by:
objectiveComparatorin classNSGA2Selection<T extends Comparable<T>>- Returns:
-
distance
Define how to compute distances between fitness scores along their objectives- Specified by:
distancein classNSGA2Selection<T extends Comparable<T>>- Returns:
- Distance computation method
-
withNumberObjectives
Copy the current immutable object by setting a value for thenumberObjectivesattribute. A value equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for numberObjectives- Returns:
- A modified copy or the
thisobject
-
withDominance
Copy the current immutable object by setting a value for thedominanceattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for dominance- Returns:
- A modified copy or the
thisobject
-
withDeduplicate
Copy the current immutable object by setting a present value for the optionaldeduplicateattribute.- Parameters:
value- The value for deduplicate- Returns:
- A modified copy or
thisif not changed
-
withDeduplicate
public final ImmutableNSGA2Selection<T> withDeduplicate(Optional<? extends Comparator<Genotype>> optional) Copy the current immutable object by setting an optional value for thededuplicateattribute. A shallow reference equality check is used on unboxed optional value to prevent copying of the same value by returningthis.- Parameters:
optional- An optional value for deduplicate- Returns:
- A modified copy or
thisif not changed
-
withObjectiveComparator
public final ImmutableNSGA2Selection<T> withObjectiveComparator(Function<Integer, Comparator<T>> value) Copy the current immutable object by setting a value for theobjectiveComparatorattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for objectiveComparator- Returns:
- A modified copy or the
thisobject
-
withDistance
Copy the current immutable object by setting a value for thedistanceattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for distance- Returns:
- A modified copy or the
thisobject
-
equals
This instance is equal to all instances ofImmutableNSGA2Selectionthat have equal attribute values. -
equalsByValue
-
hashCode
public int hashCode()Computes a hash code from attributes:numberObjectives,dominance,deduplicate,objectiveComparator,distance. -
toString
Prints the immutable valueNSGA2Selectionwith attribute values. -
of
public static <T extends Comparable<T>> NSGA2Selection<T> of(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance) Construct a new immutableNSGA2Selectioninstance.- Type Parameters:
T- generic parameter T- Parameters:
numberObjectives- The value for thenumberObjectivesattributeobjectiveComparator- The value for theobjectiveComparatorattributedistance- The value for thedistanceattribute- Returns:
- An immutable NSGA2Selection instance
-
copyOf
Creates an immutable copy of aNSGA2Selectionvalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Type Parameters:
T- generic parameter T- Parameters:
instance- The instance to copy- Returns:
- A copied immutable NSGA2Selection instance
-