Package org.opt4j.genotype
Class DoubleMapGenotype<K>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<Double>
org.opt4j.genotype.DoubleGenotype
org.opt4j.genotype.DoubleMapGenotype<K>
- Type Parameters:
K
- the type of keys
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<Double>
,Collection<Double>
,List<Double>
,RandomAccess
,Genotype
,ListGenotype<Double>
,MapGenotype<K,
Double>
- See Also:
-
Field Summary
Fields inherited from class org.opt4j.genotype.DoubleGenotype
bounds
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorDescriptionDoubleMapGenotype
(List<K> keys, Bounds<Double> bounds) Constructs aDoubleMapGenotype
. -
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 thekeys
.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.DoubleGenotype
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
-
-
Constructor Details
-
DoubleMapGenotype
Constructs aDoubleMapGenotype
.- Parameters:
keys
- the list of keysbounds
- the lower and upper bounds
-
-
Method Details
-
init
Initialize this genotype with random values based on the size of thekeys
.- Parameters:
random
- the random number generator
-
init
Not supported. Useinit(Random)
instead.- Overrides:
init
in classDoubleGenotype
- 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,
Double> - Parameters:
key
- the key- Returns:
true
if the key is contained
-
getValue
Description copied from interface:MapGenotype
Returns the value for the specified key.- Specified by:
getValue
in interfaceMapGenotype<K,
Double> - 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,
Double> - 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 classDoubleGenotype
- Type Parameters:
G
- the type of genotype for an implicit cast- Returns:
- new instance of the genotype
-
toString
- Overrides:
toString
in classAbstractCollection<Double>
-
getIndexOf
Description copied from interface:MapGenotype
Returns the index of the key.- Specified by:
getIndexOf
in interfaceMapGenotype<K,
Double> - Parameters:
key
- the key- Returns:
- the index
-
getKeys
Description copied from interface:MapGenotype
Return all keys.- Specified by:
getKeys
in interfaceMapGenotype<K,
Double> - Returns:
- all keys
-