Package | Description |
---|---|
jenes.algorithms |
Modifier and Type | Field and Description |
---|---|
static SteadyStateGA.SelectionMethod |
SteadyStateGA.DEFAULT_SELECTION_METHOD |
Modifier and Type | Method and Description |
---|---|
static SteadyStateGA.SelectionMethod |
SteadyStateGA.SelectionMethod.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SteadyStateGA.SelectionMethod[] |
SteadyStateGA.SelectionMethod.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
SteadyStateGA(Fitness fitness,
Population<T> pop,
int genlimit,
int rr,
int sr,
SteadyStateGA.SelectionMethod selmethod,
AbstractStage<T>... stages)
Builds a new SteadyStateGA
|
SteadyStateGA(Fitness fitness,
Population<T> pop,
int genlimit,
SteadyStateGA.SelectionMethod selmethod,
AbstractStage<T>... stages)
Builds a new SteadyStateGA with default replacement rate,
defaul selection rate
|