Public Member Functions | |
OBDEGenerator (int poblacion, int dimension, int iteraciones, double F, double CR, int strg, String CrossType, double JR) | |
Prototype | mutant (ArrayList< Prototype > population, int actual, int mejor) |
int[] | mejoresParticulas (ArrayList< Prototype > population, double fitness[]) |
void | execute () |
Static Public Member Functions | |
static void | main (String[] args) |
Package Functions | |
double | fitness (Prototype p) |
Definition at line 18 of file OBDEGenerator.java.
org.sci2s.eamhco.OBDEGenerator.OBDEGenerator | ( | int | poblacion, | |
int | dimension, | |||
int | iteraciones, | |||
double | F, | |||
double | CR, | |||
int | strg, | |||
String | CrossType, | |||
double | JR | |||
) |
Build a new DEGenerator Algorithm
Definition at line 40 of file OBDEGenerator.java.
void org.sci2s.eamhco.OBDEGenerator.execute | ( | ) |
Generate a reduced prototype set by the DEGenerator method.
Definition at line 278 of file OBDEGenerator.java.
double org.sci2s.eamhco.OBDEGenerator.fitness | ( | Prototype | p | ) | [package] |
Fitness function.
Definition at line 222 of file OBDEGenerator.java.
static void org.sci2s.eamhco.OBDEGenerator.main | ( | String[] | args | ) | [static] |
args | Arguments of the main function. |
Definition at line 588 of file OBDEGenerator.java.
int [] org.sci2s.eamhco.OBDEGenerator.mejoresParticulas | ( | ArrayList< Prototype > | population, | |
double | fitness[] | |||
) |
This function allows to find the best particle in the population
population | ||
fitness |
Definition at line 235 of file OBDEGenerator.java.
Prototype org.sci2s.eamhco.OBDEGenerator.mutant | ( | ArrayList< Prototype > | population, | |
int | actual, | |||
int | mejor | |||
) |
Mutant operator
population | ||
actual | ||
mejor |
Definition at line 88 of file OBDEGenerator.java.