Package org.opt4j.genotype
Class SelectMapGenotype<K,V>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<Integer>
org.opt4j.genotype.IntegerGenotype
org.opt4j.genotype.SelectMapGenotype<K,V>
- Type Parameters:
K
- the type of keysV
- the type of elements
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Integer>
,Collection<Integer>
,List<Integer>
,RandomAccess
,Genotype
,ListGenotype<Integer>
,MapGenotype<K,
V>
The
SelectGenotype
selects for each key an element from a given list.- See Also:
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionFields inherited from class org.opt4j.genotype.IntegerGenotype
bounds
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorDescriptionSelectMapGenotype
(List<K> keys, List<V> values) Constructs aSelectMapGenotype
.Constructs aSelectMapGenotype
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
containsKey
(K key) Returnstrue
if the key is contained.int
getIndexOf
(K key) Returns the index of the key.getKeys()
Return all keys.Returns the value for the specified key.void
Initialize this genotype with random values based on the size of thekey
set.void
Not supported.<G extends Genotype>
GConstructs a new (empty) instance of thisGenotype
.void
Sets the value for the specified key.toString()
Methods inherited from class org.opt4j.genotype.IntegerGenotype
getLowerBound, getUpperBound
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractCollection
containsAll
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
Field Details
-
keys
-
values
-
-
Constructor Details
-
SelectMapGenotype
Constructs aSelectMapGenotype
.- Parameters:
keys
- the keysvalues
- the values
-
SelectMapGenotype
Constructs aSelectMapGenotype
. Here, each key has the same target list of element values.- Parameters:
keys
- the keysvalues
- the values
-
-
Method Details
-
init
Initialize this genotype with random values based on the size of thekey
set.- Parameters:
random
- the random number generator
-
init
Not supported. Useinit(Random)
instead.- Overrides:
init
in classIntegerGenotype
- Parameters:
random
- the random number generatorn
- the number of elements in the resulting genotype- See Also:
-
containsKey
Description copied from interface:MapGenotype
Returnstrue
if the key is contained.- Specified by:
containsKey
in interfaceMapGenotype<K,
V> - Parameters:
key
- the key- Returns:
true
if the key is contained
-
getIndexOf
Description copied from interface:MapGenotype
Returns the index of the key.- Specified by:
getIndexOf
in interfaceMapGenotype<K,
V> - Parameters:
key
- the key- Returns:
- the index
-
getValue
Description copied from interface:MapGenotype
Returns the value for the specified key.- Specified by:
getValue
in interfaceMapGenotype<K,
V> - Parameters:
key
- the key- Returns:
- the value
- See Also:
-
setValue
Description copied from interface:MapGenotype
Sets the value for the specified key.- Specified by:
setValue
in interfaceMapGenotype<K,
V> - Parameters:
key
- the keyvalue
- the value- See Also:
-
newInstance
Description copied from interface:Genotype
Constructs a new (empty) instance of thisGenotype
.- Specified by:
newInstance
in interfaceGenotype
- Overrides:
newInstance
in classIntegerGenotype
- Type Parameters:
G
- the type of genotype for an implicit cast- Returns:
- new instance of the genotype
-
toString
- Overrides:
toString
in classAbstractCollection<Integer>
-
getKeys
Description copied from interface:MapGenotype
Return all keys.- Specified by:
getKeys
in interfaceMapGenotype<K,
V> - Returns:
- all keys
-