Public Member Functions | |
DEGenerator (int poblacion, int dimension, int iteraciones, double F, double CR, int strg, String CrossType) | |
Prototype | mutant (ArrayList< Prototype > population, int actual, int mejor) |
void | execute () |
Static Public Member Functions | |
static void | main (String[] args) |
Package Functions | |
double | fitness (Prototype p) |
Population | Size. | |
Scaling | Factor. | |
Crossover | rate. | |
Strategy | (1-5). | |
MaxIter |
Definition at line 29 of file DEGenerator.java.
org.sci2s.eamhco.DEGenerator.DEGenerator | ( | int | poblacion, | |
int | dimension, | |||
int | iteraciones, | |||
double | F, | |||
double | CR, | |||
int | strg, | |||
String | CrossType | |||
) |
Build a new DEGenerator Algorithm
Definition at line 49 of file DEGenerator.java.
void org.sci2s.eamhco.DEGenerator.execute | ( | ) |
Execute the DEGenerator method.
Definition at line 241 of file DEGenerator.java.
double org.sci2s.eamhco.DEGenerator.fitness | ( | Prototype | p | ) | [package] |
Fitness function.
Definition at line 228 of file DEGenerator.java.
static void org.sci2s.eamhco.DEGenerator.main | ( | String[] | args | ) | [static] |
args | Arguments of the main function. |
Definition at line 454 of file DEGenerator.java.
Prototype org.sci2s.eamhco.DEGenerator.mutant | ( | ArrayList< Prototype > | population, | |
int | actual, | |||
int | mejor | |||
) |
Mutant operator
population | ||
actual | ||
mejor |
Definition at line 95 of file DEGenerator.java.