org.uma.jmetal.workingTest.BLXAlphaCrossoverWorkingTest Maven / Gradle / Ivy
package org.uma.jmetal.workingTest;
import org.uma.jmetal.operator.CrossoverOperator;
import org.uma.jmetal.operator.impl.crossover.BLXAlphaCrossover;
import org.uma.jmetal.problem.DoubleProblem;
import org.uma.jmetal.problem.multiobjective.Kursawe;
import org.uma.jmetal.solution.DoubleSolution;
import org.uma.jmetal.util.JMetalException;
import org.uma.jmetal.util.fileoutput.SolutionSetOutput;
import org.uma.jmetal.util.fileoutput.impl.DefaultFileOutputContext;
import java.io.*;
import java.util.*;
/**
* @author Antonio J. Nebro
* @version 1.0
*
* This class is intended to verify the working of the BLX-alpha crossover operator. A figure
* depicting the values obtained when generating 1000000 solutions, a granularity of 100, and a number
* of different distribution alpha values (0.1, 0.5) can be found here:
*
https://github.com/jMetal/jMetal/blob/master/figures/blxalpha.png
*/
public class BLXAlphaCrossoverWorkingTest {
/**
* Program to generate data representing the distribution of points generated by a SBX
* crossover operator. The parameters to be introduced by the command line are:
* - numberOfSolutions: number of solutions to generate
* - granularity: number of subdivisions to be considered.
* - alpha: alpha value
* - outputFile: file containing the results
*
* @param args Command line arguments
*/
public static void main(String[] args) throws FileNotFoundException {
if (args.length !=4) {
throw new JMetalException("Usage: numberOfSolutions granularity alpha outputFile") ;
}
int numberOfPoints = Integer.valueOf(args[0]) ;
int granularity = Integer.valueOf(args[1]) ;
double alpha = Double.valueOf(args[2]) ;
String outputFileName = args[3] ;
DoubleProblem problem ;
problem = new Kursawe(1) ;
CrossoverOperator crossover = new BLXAlphaCrossover(1.0, alpha) ;
DoubleSolution solution1 = problem.createSolution() ;
DoubleSolution solution2 = problem.createSolution() ;
solution1.setVariableValue(0, -2.0);
solution2.setVariableValue(0, 2.0);
List parents = Arrays.asList(solution1, solution2) ;
List population = new ArrayList<>(numberOfPoints) ;
for (int i = 0; i < numberOfPoints ; i++) {
List solutions = (List) crossover.execute(parents);
population.add(solutions.get(0)) ;
population.add(solutions.get(1)) ;
}
Collections.sort(population, new VariableComparator()) ;
new SolutionSetOutput.Printer(population)
.setSeparator("\t")
.setVarFileOutputContext(new DefaultFileOutputContext("solutionsBLXAlpha"))
.print();
double[][] classifier = classify(population, problem, granularity);
BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outputFileName)));
try {
for (int i = 0; i < classifier.length; i++) {
bufferedWriter
.write(classifier[i][0] + "\t" + classifier[i][1]);
bufferedWriter.newLine();
}
bufferedWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
}
private static double[][] classify(List solutions, DoubleProblem problem, int granularity) {
double grain = (problem.getUpperBound(0) - problem.getLowerBound(0)) / granularity ;
double[][] classifier = new double[granularity][] ;
for (int i = 0 ; i < granularity; i++) {
classifier[i] = new double[2] ;
classifier[i][0] = problem.getLowerBound(0) + i * grain ;
classifier[i][1] = 0 ;
}
for (DoubleSolution solution : solutions) {
boolean found = false ;
int index = 0 ;
while (!found) {
if (solution.getVariableValue(0) <= classifier[index][0]) {
classifier[index][1] ++ ;
found = true ;
} else {
if (index == (granularity - 1)) {
classifier[index][1] ++ ;
found = true ;
} else {
index++;
}
}
}
}
return classifier ;
}
public static class VariableComparator implements Comparator {
/**
* Compares two solutions according to the first variable value
*
* @param solution1 Object representing the first Solution
.
* @param solution2 Object representing the second Solution
.
* @return -1, or 0, or 1 if o1 is less than, equal, or greater than o2,
* respectively.
*/
@Override
public int compare(DoubleSolution solution1, DoubleSolution solution2) {
if (solution1 == null) {
return 1;
} else if (solution2 == null) {
return -1;
}
if (solution1.getVariableValue(0) < solution2.getVariableValue(0)) {
return -1;
}
if (solution1.getVariableValue(0) > solution2.getVariableValue(0)) {
return 1;
}
return 0;
}
}
}