|
BiCIAM - Framework Metaheurístico 1.0
Framework de optimización con algoritmos metaheurísticos y evolutivos
|
Algoritmo de recocido simulado adaptado para problemas multicaso. Más...
Métodos públicos | |
| GeneratorType | getTypeGenerator () |
| void | setTypeGenerator (GeneratorType typeGenerator) |
| MultiCaseSimulatedAnnealing () | |
| State | generate (Integer operatornumber) throws IllegalArgumentException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException |
| Genera un nuevo estado candidato. | |
| State | getReference () |
| Obtiene el estado de referencia actual. | |
| void | setStateRef (State stateRef) |
| void | setInitialReference (State stateInitialRef) |
| Establece el estado de referencia inicial. | |
| void | updateReference (State stateCandidate, Integer countIterationsCurrent) throws IllegalArgumentException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException |
| Actualiza el estado de referencia con un nuevo candidato. | |
| GeneratorType | getType () |
| Obtiene el tipo de generador. | |
| List< State > | getReferenceList () |
| Obtiene la lista de estados de referencia. | |
| List< State > | getSonList () |
| Obtiene la lista de estados hijos generados. | |
| boolean | awardUpdateREF (State stateCandidate) |
| Verifica si se debe actualizar la referencia. | |
| float | getWeight () |
| Obtiene el peso actual del generador. | |
| void | setWeight (float weight) |
| Establece el peso del generador. | |
| int[] | getListCountBetterGender () |
| Obtiene el historial de mejoras por período. | |
| int[] | getListCountGender () |
| Obtiene el historial de uso por período. | |
| float[] | getTrace () |
| Obtiene el historial de trazas. | |
Atributos públicos estáticos | |
| static Double | alpha |
| static Double | tinitial |
| static Double | tfinal |
| static int | countIterationsT |
Atributos privados | |
| CandidateValue | candidatevalue |
| AcceptType | typeAcceptation |
| StrategyType | strategy |
| CandidateType | typeCandidate |
| State | stateReferenceSA |
| IFFactoryAcceptCandidate | ifacceptCandidate |
| int | countRept |
| GeneratorType | typeGenerator |
| List< State > | listStateReference = new ArrayList<State>() |
| float | weight |
| List< Float > | listTrace = new ArrayList<Float>() |
Otros miembros heredados | |
| Atributos públicos heredados de metaheuristics.generators.Generator | |
| int | countGender |
| Contador de uso del generador. | |
| int | countBetterGender |
| Contador de mejoras del generador. | |
| int[] | listCountBetterGender |
| Array con las mejoras de cada generador en períodos de 10, acumulativo. | |
Algoritmo de recocido simulado adaptado para problemas multicaso.
Esta clase implementa una variante del recocido simulado que acepta soluciones múltiples usando un criterio de aceptación multicaso con temperatura decreciente.
| metaheuristics.generators.MultiCaseSimulatedAnnealing.MultiCaseSimulatedAnnealing | ( | ) |
| boolean metaheuristics.generators.MultiCaseSimulatedAnnealing.awardUpdateREF | ( | State | stateCandidate | ) |
Verifica si se debe actualizar la referencia.
| stateCandidate | Estado candidato a verificar |
Reimplementado de metaheuristics.generators.Generator.
| State metaheuristics.generators.MultiCaseSimulatedAnnealing.generate | ( | Integer | operatornumber | ) | throws IllegalArgumentException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException |
Genera un nuevo estado candidato.
| operatornumber | Número de operador a utilizar |
| IllegalArgumentException | Si los argumentos son inválidos |
| SecurityException | Si hay problemas de seguridad |
| ClassNotFoundException | Si no se encuentra una clase |
| InstantiationException | Si hay error en la instanciación |
| IllegalAccessException | Si hay acceso ilegal |
| InvocationTargetException | Si hay error en la invocación |
| NoSuchMethodException | Si no se encuentra un método |
Reimplementado de metaheuristics.generators.Generator.
| int[] metaheuristics.generators.MultiCaseSimulatedAnnealing.getListCountBetterGender | ( | ) |
Obtiene el historial de mejoras por período.
Reimplementado de metaheuristics.generators.Generator.
| int[] metaheuristics.generators.MultiCaseSimulatedAnnealing.getListCountGender | ( | ) |
Obtiene el historial de uso por período.
Reimplementado de metaheuristics.generators.Generator.
| State metaheuristics.generators.MultiCaseSimulatedAnnealing.getReference | ( | ) |
Obtiene el estado de referencia actual.
Reimplementado de metaheuristics.generators.Generator.
| List< State > metaheuristics.generators.MultiCaseSimulatedAnnealing.getReferenceList | ( | ) |
Obtiene la lista de estados de referencia.
Reimplementado de metaheuristics.generators.Generator.
| List< State > metaheuristics.generators.MultiCaseSimulatedAnnealing.getSonList | ( | ) |
Obtiene la lista de estados hijos generados.
Reimplementado de metaheuristics.generators.Generator.
| float[] metaheuristics.generators.MultiCaseSimulatedAnnealing.getTrace | ( | ) |
Obtiene el historial de trazas.
Reimplementado de metaheuristics.generators.Generator.
| GeneratorType metaheuristics.generators.MultiCaseSimulatedAnnealing.getType | ( | ) |
Obtiene el tipo de generador.
Reimplementado de metaheuristics.generators.Generator.
| GeneratorType metaheuristics.generators.MultiCaseSimulatedAnnealing.getTypeGenerator | ( | ) |
| float metaheuristics.generators.MultiCaseSimulatedAnnealing.getWeight | ( | ) |
Obtiene el peso actual del generador.
Reimplementado de metaheuristics.generators.Generator.
| void metaheuristics.generators.MultiCaseSimulatedAnnealing.setInitialReference | ( | State | stateInitialRef | ) |
Establece el estado de referencia inicial.
| stateInitialRef | Estado de referencia inicial |
Reimplementado de metaheuristics.generators.Generator.
| void metaheuristics.generators.MultiCaseSimulatedAnnealing.setStateRef | ( | State | stateRef | ) |
| void metaheuristics.generators.MultiCaseSimulatedAnnealing.setTypeGenerator | ( | GeneratorType | typeGenerator | ) |
| void metaheuristics.generators.MultiCaseSimulatedAnnealing.setWeight | ( | float | weight | ) |
Establece el peso del generador.
| weight | Nuevo peso del generador |
Reimplementado de metaheuristics.generators.Generator.
| void metaheuristics.generators.MultiCaseSimulatedAnnealing.updateReference | ( | State | stateCandidate, |
| Integer | countIterationsCurrent ) throws IllegalArgumentException, SecurityException, ClassNotFoundException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException |
Actualiza el estado de referencia con un nuevo candidato.
| stateCandidate | Estado candidato a considerar |
| countIterationsCurrent | Iteración actual del algoritmo |
| IllegalArgumentException | Si los argumentos son inválidos |
| SecurityException | Si hay problemas de seguridad |
| ClassNotFoundException | Si no se encuentra una clase |
| InstantiationException | Si hay error en la instanciación |
| IllegalAccessException | Si hay acceso ilegal |
| InvocationTargetException | Si hay error en la invocación |
| NoSuchMethodException | Si no se encuentra un método |
Reimplementado de metaheuristics.generators.Generator.
|
static |
|
private |
|
static |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
static |
|
static |
|
private |
|
private |
|
private |
|
private |