Class ImmutableTournamentNSGA2Selection<T extends Comparable<T>>
java.lang.Object
net.bmahe.genetics4j.moo.nsga2.spec.TournamentNSGA2Selection<T>
net.bmahe.genetics4j.moo.nsga2.spec.ImmutableTournamentNSGA2Selection<T>
- All Implemented Interfaces:
SelectionPolicy
@Generated("org.immutables.processor.ProxyProcessor")
public final class ImmutableTournamentNSGA2Selection<T extends Comparable<T>>
extends TournamentNSGA2Selection<T>
Immutable implementation of
TournamentNSGA2Selection
.
Use the builder to create immutable instances:
new TournamentNSGA2Selection.Builder()
.
Use the static factory method to create immutable instances:
ImmutableTournamentNSGA2Selection.of()
.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Builds instances of typeImmutableTournamentNSGA2Selection
.private final class
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional
<Comparator<Genotype>> private final ObjectiveDistance
<T> private final Comparator
<T> private ImmutableTournamentNSGA2Selection<T>.InitShim
private final int
private final int
private final Function
<Integer, Comparator<T>> private static final byte
private static final byte
private static final byte
-
Constructor Summary
ModifierConstructorDescriptionprivate
ImmutableTournamentNSGA2Selection
(int numberObjectives, Comparator<T> dominance, Optional<Comparator<Genotype>> deduplicate, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates) private
ImmutableTournamentNSGA2Selection
(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates) private
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
ImmutableTournamentNSGA2Selection<T> copyOf
(TournamentNSGA2Selection<T> instance) Creates an immutable copy of aTournamentNSGA2Selection
value.Comparator used for deduplication of solution prior to processingdistance()
Define how to compute distances between fitness scores along their objectivesOverride the dominance operator.boolean
This instance is equal to all instances ofImmutableTournamentNSGA2Selection
that have equal attribute values.private boolean
equalTo
(int synthetic, ImmutableTournamentNSGA2Selection<?> another) int
hashCode()
Computes a hash code from attributes:numberObjectives
,dominance
,deduplicate
,objectiveComparator
,distance
,numCandidates
.int
Describe how many objectives are embedded in Tint
Number of candidates in each tournamentSort T based on the objective passed as a parameterstatic <T extends Comparable<T>>
ImmutableTournamentNSGA2Selection<T> of
(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates) Construct a new immutableTournamentNSGA2Selection
instance.toString()
Prints the immutable valueTournamentNSGA2Selection
with attribute values.withDeduplicate
(Optional<Comparator<Genotype>> value) Copy the current immutable object by setting a value for thededuplicate
attribute.withDistance
(ObjectiveDistance<T> value) Copy the current immutable object by setting a value for thedistance
attribute.withDominance
(Comparator<T> value) Copy the current immutable object by setting a value for thedominance
attribute.withNumberObjectives
(int value) Copy the current immutable object by setting a value for thenumberObjectives
attribute.withNumCandidates
(int value) Copy the current immutable object by setting a value for thenumCandidates
attribute.withObjectiveComparator
(Function<Integer, Comparator<T>> value) Copy the current immutable object by setting a value for theobjectiveComparator
attribute.Methods inherited from class net.bmahe.genetics4j.moo.nsga2.spec.TournamentNSGA2Selection
builder, ofFitnessVector, ofFitnessVector
-
Field Details
-
numberObjectives
private final int numberObjectives -
dominance
-
deduplicate
-
objectiveComparator
-
distance
-
numCandidates
private final int numCandidates -
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
private transient volatile ImmutableTournamentNSGA2Selection<T extends Comparable<T>>.InitShim initShim
-
-
Constructor Details
-
ImmutableTournamentNSGA2Selection
private ImmutableTournamentNSGA2Selection(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates) -
ImmutableTournamentNSGA2Selection
-
ImmutableTournamentNSGA2Selection
private ImmutableTournamentNSGA2Selection(int numberObjectives, Comparator<T> dominance, Optional<Comparator<Genotype>> deduplicate, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates)
-
-
Method Details
-
numberObjectives
public int numberObjectives()Describe how many objectives are embedded in T- Specified by:
numberObjectives
in classTournamentNSGA2Selection<T extends Comparable<T>>
- Returns:
- Number of objectives embedded in T
-
dominance
Override the dominance operator.If not specified, it assumes the default comparator conforms to the Pareto dominance relation
- Overrides:
dominance
in classTournamentNSGA2Selection<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:
deduplicate
in classTournamentNSGA2Selection<T extends Comparable<T>>
- Returns:
-
objectiveComparator
Sort T based on the objective passed as a parameter- Specified by:
objectiveComparator
in classTournamentNSGA2Selection<T extends Comparable<T>>
- Returns:
-
distance
Define how to compute distances between fitness scores along their objectives- Specified by:
distance
in classTournamentNSGA2Selection<T extends Comparable<T>>
- Returns:
- Distance computation method
-
numCandidates
public int numCandidates()Number of candidates in each tournament- Specified by:
numCandidates
in classTournamentNSGA2Selection<T extends Comparable<T>>
- Returns:
- Number of candidates in each tournament
-
withNumberObjectives
Copy the current immutable object by setting a value for thenumberObjectives
attribute. 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 of the
this
object
-
withDominance
Copy the current immutable object by setting a value for thedominance
attribute. 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 of the
this
object
-
withDeduplicate
public final ImmutableTournamentNSGA2Selection<T> withDeduplicate(Optional<Comparator<Genotype>> value) Copy the current immutable object by setting a value for thededuplicate
attribute. An equals check used to prevent copying of the same value by returningthis
.- Parameters:
value
- A new value for deduplicate- Returns:
- A modified copy of the
this
object
-
withObjectiveComparator
public final ImmutableTournamentNSGA2Selection<T> withObjectiveComparator(Function<Integer, Comparator<T>> value) Copy the current immutable object by setting a value for theobjectiveComparator
attribute. 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 of the
this
object
-
withDistance
Copy the current immutable object by setting a value for thedistance
attribute. 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 of the
this
object
-
withNumCandidates
Copy the current immutable object by setting a value for thenumCandidates
attribute. A value equality check is used to prevent copying of the same value by returningthis
.- Parameters:
value
- A new value for numCandidates- Returns:
- A modified copy of the
this
object
-
equals
This instance is equal to all instances ofImmutableTournamentNSGA2Selection
that have equal attribute values. -
equalTo
-
hashCode
public int hashCode()Computes a hash code from attributes:numberObjectives
,dominance
,deduplicate
,objectiveComparator
,distance
,numCandidates
. -
toString
Prints the immutable valueTournamentNSGA2Selection
with attribute values. -
of
public static <T extends Comparable<T>> ImmutableTournamentNSGA2Selection<T> of(int numberObjectives, Function<Integer, Comparator<T>> objectiveComparator, ObjectiveDistance<T> distance, int numCandidates) Construct a new immutableTournamentNSGA2Selection
instance.- Type Parameters:
T
- generic parameter T- Parameters:
numberObjectives
- The value for thenumberObjectives
attributeobjectiveComparator
- The value for theobjectiveComparator
attributedistance
- The value for thedistance
attributenumCandidates
- The value for thenumCandidates
attribute- Returns:
- An immutable TournamentNSGA2Selection instance
-
copyOf
public static <T extends Comparable<T>> ImmutableTournamentNSGA2Selection<T> copyOf(TournamentNSGA2Selection<T> instance) Creates an immutable copy of aTournamentNSGA2Selection
value. 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 TournamentNSGA2Selection instance
-