Search in sources :

Example 16 with NSGAII

use of org.evosuite.ga.metaheuristics.NSGAII in project evosuite by EvoSuite.

the class TestShere method testSphere.

/**
 * Testing NSGA-II with Sphere Problem
 *
 * @throws IOException
 * @throws NumberFormatException
 */
@Test
public void testSphere() throws NumberFormatException, IOException {
    Properties.MUTATION_RATE = 1d / 1d;
    ChromosomeFactory<?> factory = new RandomFactory(false, 1, Math.pow(-10.0, 3.0), Math.pow(10.0, 3.0));
    // GeneticAlgorithm<?> ga = new NSGAII(factory);
    GeneticAlgorithm<?> ga = new NSGAII(factory);
    BinaryTournamentSelectionCrowdedComparison ts = new BinaryTournamentSelectionCrowdedComparison();
    // BinaryTournament ts = new BinaryTournament();
    ga.setSelectionFunction(ts);
    ga.setCrossOverFunction(new SBXCrossover());
    Problem p = new Sphere();
    final FitnessFunction f1 = (FitnessFunction) p.getFitnessFunctions().get(0);
    ga.addFitnessFunction(f1);
    // execute
    ga.generateSolution();
    List<Chromosome> chromosomes = (List<Chromosome>) ga.getPopulation();
    Collections.sort(chromosomes, new Comparator<Chromosome>() {

        @Override
        public int compare(Chromosome arg0, Chromosome arg1) {
            return Double.compare(arg0.getFitness(f1), arg1.getFitness(f1));
        }
    });
    for (Chromosome chromosome : chromosomes) Assert.assertEquals(chromosome.getFitness(f1), 0.00, 0.01);
    for (Chromosome chromosome : chromosomes) {
        NSGAChromosome nsga_c = (NSGAChromosome) chromosome;
        DoubleVariable x = (DoubleVariable) nsga_c.getVariables().get(0);
        System.out.printf("%f : %f\n", x.getValue(), chromosome.getFitness(f1));
    }
}
Also used : NSGAChromosome(org.evosuite.ga.NSGAChromosome) Chromosome(org.evosuite.ga.Chromosome) NSGAChromosome(org.evosuite.ga.NSGAChromosome) FitnessFunction(org.evosuite.ga.FitnessFunction) RandomFactory(org.evosuite.ga.metaheuristics.RandomFactory) NSGAII(org.evosuite.ga.metaheuristics.NSGAII) BinaryTournamentSelectionCrowdedComparison(org.evosuite.ga.operators.selection.BinaryTournamentSelectionCrowdedComparison) Problem(org.evosuite.ga.problems.Problem) List(java.util.List) DoubleVariable(org.evosuite.ga.variables.DoubleVariable) SBXCrossover(org.evosuite.ga.operators.crossover.SBXCrossover) Test(org.junit.Test)

Aggregations

NSGAII (org.evosuite.ga.metaheuristics.NSGAII)16 Test (org.junit.Test)16 NSGAChromosome (org.evosuite.ga.NSGAChromosome)15 List (java.util.List)12 Chromosome (org.evosuite.ga.Chromosome)12 FitnessFunction (org.evosuite.ga.FitnessFunction)12 RandomFactory (org.evosuite.ga.metaheuristics.RandomFactory)12 SBXCrossover (org.evosuite.ga.operators.crossover.SBXCrossover)12 BinaryTournamentSelectionCrowdedComparison (org.evosuite.ga.operators.selection.BinaryTournamentSelectionCrowdedComparison)12 Problem (org.evosuite.ga.problems.Problem)12 GenerationalDistance (org.evosuite.ga.problems.metrics.GenerationalDistance)8 Spacing (org.evosuite.ga.problems.metrics.Spacing)8 ArrayList (java.util.ArrayList)4 DoubleVariable (org.evosuite.ga.variables.DoubleVariable)4