Package | Description |
---|---|
jenes.algorithms |
Modifier and Type | Field and Description |
---|---|
static IslandGA.ReplacementStrategy |
IslandGA.DEFAULT_REPLACEMENT
The default replacement strategy
|
Modifier and Type | Method and Description |
---|---|
IslandGA.ReplacementStrategy |
IslandGA.getReplacement()
Returns the replacement strategy
|
static IslandGA.ReplacementStrategy |
IslandGA.ReplacementStrategy.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IslandGA.ReplacementStrategy[] |
IslandGA.ReplacementStrategy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
IslandGA.setReplacement(IslandGA.ReplacementStrategy replacement)
Sets the replacement stategy
|
Constructor and Description |
---|
IslandGA(Fitness fitness,
Population<T> population,
int genlimit,
int niches,
GeneticAlgorithm<T> algo,
int migration,
IslandGA.Graph geography,
IslandGA.ReplacementStrategy rp)
Creates a IslandGA instance
|
IslandGA(Fitness fitness,
Population<T> population,
int genlimit,
int niches,
int migration,
IslandGA.Graph geography,
IslandGA.ReplacementStrategy rp)
Creates a IslandGA instance
|