org.uma.jmetal.runner.multiobjective.SMPSORPWithOneReferencePointRunner Maven / Gradle / Ivy
package org.uma.jmetal.runner.multiobjective;
import org.uma.jmetal.algorithm.Algorithm;
import org.uma.jmetal.algorithm.multiobjective.smpso.SMPSORP;
import org.uma.jmetal.operator.MutationOperator;
import org.uma.jmetal.operator.impl.mutation.PolynomialMutation;
import org.uma.jmetal.problem.DoubleProblem;
import org.uma.jmetal.solution.DoubleSolution;
import org.uma.jmetal.util.AlgorithmRunner;
import org.uma.jmetal.util.JMetalException;
import org.uma.jmetal.util.JMetalLogger;
import org.uma.jmetal.util.ProblemUtils;
import org.uma.jmetal.util.archivewithreferencepoint.ArchiveWithReferencePoint;
import org.uma.jmetal.util.archivewithreferencepoint.impl.CrowdingDistanceArchiveWithReferencePoint;
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;
public class SMPSORPWithOneReferencePointRunner {
/**
* Program to run the SMPSORP algorithm with one reference point. SMPSORP is described in "Extending the
* Speed-constrained Multi-Objective PSO (SMPSO) With Reference Point Based Preference Articulation".
* Accepted in PPSN 2018"
*
* @author Antonio J. Nebro
*/
public static void main(String[] args) throws JMetalException {
DoubleProblem problem;
Algorithm> algorithm;
MutationOperator mutation;
String problemName;
if (args.length == 1) {
problemName = args[0];
} else {
problemName = "org.uma.jmetal.problem.multiobjective.zdt.ZDT1";
}
problem = (DoubleProblem) ProblemUtils.loadProblem(problemName);
List> referencePoints;
referencePoints = new ArrayList<>();
referencePoints.add(Arrays.asList(0.2, 0.8));
double mutationProbability = 1.0 / problem.getNumberOfVariables();
double mutationDistributionIndex = 20.0;
mutation = new PolynomialMutation(mutationProbability, mutationDistributionIndex);
int maxIterations = 250;
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<>());
AlgorithmRunner algorithmRunner = new AlgorithmRunner.Executor(algorithm)
.execute();
List population = algorithm.getResult();
long computingTime = algorithmRunner.getComputingTime();
JMetalLogger.logger.info("Total execution time: " + computingTime + "ms");
new SolutionListOutput(population)
.setSeparator("\t")
.setVarFileOutputContext(new DefaultFileOutputContext("VAR.tsv"))
.setFunFileOutputContext(new DefaultFileOutputContext("FUN.tsv"))
.print();
System.exit(0);
}
}