Package | Description |
---|---|
jenes.population |
Modifier and Type | Method and Description |
---|---|
Fitness.SortingMode |
Fitness.setSortingMode(Fitness.SortingMode sortingMode)
Sets the
Fitness.SortingMode of Population
|
static Fitness.SortingMode |
Fitness.SortingMode.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Fitness.SortingMode[] |
Fitness.SortingMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Fitness.SortingMode |
Fitness.setSortingMode(Fitness.SortingMode sortingMode)
Sets the
Fitness.SortingMode of Population
|
void |
Fitness.sort(Fitness.SortingMode mode,
java.util.List<Individual<C>> list)
Sorts the list of individuals given as argument using the
Fitness.SortingMode
given as argument
|
static <K extends Chromosome> |
Fitness.sort(Fitness.SortingMode sortingMode,
java.util.List<Individual<K>> list,
boolean... bis)
Sorts the list given as argument using the
Fitness.SortingMode
and the array given as arguments. |
void |
Fitness.sort(Fitness.SortingMode mode,
Population<C> pop)
Sorts the
Population given as argument using the Fitness.SortingMode
given as argument
|
static <K extends Chromosome> |
Fitness.sort(Fitness.SortingMode sortingMode,
Population<K> pop,
boolean... bis)
Sorts the
Population given as argument using the Fitness.SortingMode
and the array given as arguments. |