All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.uma.jmetal.runner.multiobjective.SMPSORPChangingTheReferencePointsAndChartsRunner Maven / Gradle / Ivy
package org.uma.jmetal.runner.multiobjective;
import org.knowm.xchart.BitmapEncoder;
import org.uma.jmetal.algorithm.Algorithm;
import org.uma.jmetal.algorithm.multiobjective.smpso.SMPSORP;
import org.uma.jmetal.measure.MeasureListener;
import org.uma.jmetal.measure.MeasureManager;
import org.uma.jmetal.measure.impl.BasicMeasure;
import org.uma.jmetal.measure.impl.CountingMeasure;
import org.uma.jmetal.operator.MutationOperator;
import org.uma.jmetal.operator.impl.mutation.PolynomialMutation;
import org.uma.jmetal.problem.DoubleProblem;
import org.uma.jmetal.problem.multiobjective.ebes.Ebes;
import org.uma.jmetal.solution.DoubleSolution;
import org.uma.jmetal.util.JMetalException;
import org.uma.jmetal.util.archivewithreferencepoint.ArchiveWithReferencePoint;
import org.uma.jmetal.util.archivewithreferencepoint.impl.CrowdingDistanceArchiveWithReferencePoint;
import org.uma.jmetal.util.chartcontainer.ChartContainerWithReferencePoints;
import org.uma.jmetal.util.evaluator.impl.SequentialSolutionListEvaluator;
import org.uma.jmetal.util.fileoutput.SolutionListOutput;
import org.uma.jmetal.util.fileoutput.impl.DefaultFileOutputContext;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
public class SMPSORPChangingTheReferencePointsAndChartsRunner {
/**
* Program to run the SMPSORP algorithm allowing to change a reference point interactively.
* SMPSORP is described in "Extending the Speed-constrained Multi-Objective PSO (SMPSO) With
* Reference Point Based Preference Articulation". Accepted in PPSN 2018. This runner is the one used in
* the use case included in the paper.
*
* In the current implementation, only one reference point can be modified interactively.
*
* @author Antonio J. Nebro
*/
public static void main(String[] args) throws JMetalException, IOException, InterruptedException {
DoubleProblem problem;
Algorithm> algorithm;
MutationOperator mutation;
String referenceParetoFront ;
problem = new Ebes("ebes/Mobile_Bridge_25N_35B_8G_16OrdZXY.ebe", new String[]{"W", "D"}) ;
problem = new Ebes("ebes/Mobile_Bridge_25N_35B_8G_16OrdZXY.ebe", new String[]{"W", "D"}) ;
referenceParetoFront = null ;
List> referencePoints;
referencePoints = new ArrayList<>();
referencePoints.add(Arrays.asList(0.0, 0.0));
double mutationProbability = 1.0 / problem.getNumberOfVariables();
double mutationDistributionIndex = 20.0;
mutation = new PolynomialMutation(mutationProbability, mutationDistributionIndex);
int maxIterations = 2500;
int swarmSize = 100;
List> archivesWithReferencePoints = new ArrayList<>();
for (int i = 0; i < referencePoints.size(); i++) {
archivesWithReferencePoints.add(
new CrowdingDistanceArchiveWithReferencePoint(
swarmSize/referencePoints.size(), referencePoints.get(i))) ;
}
algorithm = new SMPSORP(problem,
swarmSize,
archivesWithReferencePoints,
referencePoints,
mutation,
maxIterations,
0.0, 1.0,
0.0, 1.0,
2.5, 1.5,
2.5, 1.5,
0.1, 0.1,
-1.0, -1.0,
new SequentialSolutionListEvaluator<>());
/* Measure management */
MeasureManager measureManager = ((SMPSORP) algorithm).getMeasureManager();
BasicMeasure> solutionListMeasure = (BasicMeasure>) measureManager
.>getPushMeasure("currentPopulation");
CountingMeasure iterationMeasure = (CountingMeasure) measureManager.getPushMeasure(
"currentIteration");
ChartContainerWithReferencePoints chart = new ChartContainerWithReferencePoints(algorithm.getName(), 300);
chart.setFrontChart(0, 1, referenceParetoFront);
chart.setReferencePoint(referencePoints);
chart.initChart();
solutionListMeasure.register(new ChartListener(chart));
iterationMeasure.register(new IterationListener(chart));
/* End of measure management */
Thread algorithmThread = new Thread(algorithm);
ChangeReferencePoint changeReferencePoint = new ChangeReferencePoint(algorithm, referencePoints, archivesWithReferencePoints, chart) ;
Thread changePointsThread = new Thread(changeReferencePoint) ;
algorithmThread.start();
changePointsThread.start();
algorithmThread.join();
chart.saveChart("RSMPSO", BitmapEncoder.BitmapFormat.PNG);
List population = algorithm.getResult();
new SolutionListOutput(population)
.setSeparator("\t")
.setVarFileOutputContext(new DefaultFileOutputContext("VAR.tsv"))
.setFunFileOutputContext(new DefaultFileOutputContext("FUN.tsv"))
.print();
for (int i = 0; i < archivesWithReferencePoints.size(); i++) {
new SolutionListOutput(archivesWithReferencePoints.get(i).getSolutionList())
.setSeparator("\t")
.setVarFileOutputContext(new DefaultFileOutputContext("VAR" + i + ".tsv"))
.setFunFileOutputContext(new DefaultFileOutputContext("FUN" + i + ".tsv"))
.print();
}
System.out.println("FINISH") ;
System.exit(0);
}
private static class ChartListener implements MeasureListener> {
private ChartContainerWithReferencePoints chart;
private int iteration = 0;
public ChartListener(ChartContainerWithReferencePoints chart) {
this.chart = chart;
this.chart.getFrontChart().setTitle("Iteration: " + this.iteration);
}
private void refreshChart(List solutionList) {
if (this.chart != null) {
iteration++;
this.chart.getFrontChart().setTitle("Iteration: " + this.iteration);
this.chart.updateFrontCharts(solutionList);
this.chart.refreshCharts();
}
}
@Override
synchronized public void measureGenerated(List solutions) {
refreshChart(solutions);
}
}
private static class IterationListener implements MeasureListener {
ChartContainerWithReferencePoints chart;
public IterationListener(ChartContainerWithReferencePoints chart) {
this.chart = chart;
this.chart.getFrontChart().setTitle("Iteration: " + 0);
}
@Override
synchronized public void measureGenerated(Long iteration) {
if (this.chart != null) {
this.chart.getFrontChart().setTitle("Iteration: " + iteration);
}
}
}
private static class ChangeReferencePoint implements Runnable {
ChartContainerWithReferencePoints chart ;
List> referencePoints;
List> archivesWithReferencePoints;
SMPSORP algorithm ;
public ChangeReferencePoint(
Algorithm> algorithm,
List> referencePoints,
List> archivesWithReferencePoints,
ChartContainerWithReferencePoints chart)
throws InterruptedException {
this.referencePoints = referencePoints;
this.archivesWithReferencePoints = archivesWithReferencePoints;
this.chart = chart ;
this.algorithm = (SMPSORP) algorithm ;
}
@Override
public void run() {
Scanner scanner = new Scanner(System.in);
double v1 ;
double v2 ;
while (true) {
System.out.println("Introduce the new reference point (between commas):");
String s = scanner.nextLine() ;
Scanner sl= new Scanner(s);
sl.useDelimiter(",");
for (int i = 0; i < referencePoints.size(); i++) {
try {
v1 = Double.parseDouble(sl.next());
v2 = Double.parseDouble(sl.next());
} catch (Exception e) {//any problem
v1 = 0;
v2 = 0;
}
referencePoints.get(i).set(0, v1);
referencePoints.get(i).set(1, v2);
}
chart.updateReferencePoint(referencePoints);
algorithm.changeReferencePoints(referencePoints);
}
}
}
}