use of org.evosuite.ga.FitnessFunction in project evosuite by EvoSuite.
the class PrivateReflectionSystemTest method testPrivateConstructor.
private TestSuiteChromosome testPrivateConstructor() {
Properties.P_REFLECTION_ON_PRIVATE = 0.9;
Properties.REFLECTION_START_PERCENT = 0.0;
GeneticAlgorithm ga = do100percentLineTestOnStandardCriteriaWithMethodTrace(PrivateConstructor.class);
TestSuiteChromosome best = (TestSuiteChromosome) ga.getBestIndividual();
System.out.println("EvolvedTestSuite:\n" + best);
assertTrue(!best.getTests().isEmpty());
double cov = best.getCoverageInstanceOf(MethodCoverageSuiteFitness.class);
Assert.assertEquals("Non-optimal method coverage: ", 1d, cov, 0.001);
Optional<FitnessFunction<?>> ff = ga.getFitnessFunctions().stream().filter(m -> m instanceof MethodCoverageSuiteFitness).findAny();
assertEquals(1, best.getNumOfCoveredGoals(ff.get()));
cov = best.getCoverageInstanceOf(MethodTraceCoverageSuiteFitness.class);
Assert.assertEquals("Non-optimal method trace coverage: ", 1d, cov, 0.001);
ff = ga.getFitnessFunctions().stream().filter(m -> m instanceof MethodTraceCoverageSuiteFitness).findAny();
assertEquals(1, best.getNumOfCoveredGoals(ff.get()));
return best;
}
use of org.evosuite.ga.FitnessFunction in project evosuite by EvoSuite.
the class SCH2IntTest method testSCH2Fitnesses.
@Test
public void testSCH2Fitnesses() {
Problem p = new SCH2();
FitnessFunction f1 = (FitnessFunction) p.getFitnessFunctions().get(0);
FitnessFunction f2 = (FitnessFunction) p.getFitnessFunctions().get(1);
double[] values_n = { -3.0 };
NSGAChromosome c = new NSGAChromosome(-5.0, 10.0, values_n);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(0)).getValue(), -3.0, 0.0);
Assert.assertEquals(f1.getFitness(c), 3.0, 0.0);
Assert.assertEquals(f2.getFitness(c), 64.0, 0.0);
double[] values_z = { 0.0 };
c = new NSGAChromosome(-5.0, 10.0, values_z);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(0)).getValue(), 0.0, 0.0);
Assert.assertEquals(f1.getFitness(c), 0.0, 0.0);
Assert.assertEquals(f2.getFitness(c), 25.0, 0.0);
double[] values_p = { 9.0 };
c = new NSGAChromosome(-5.0, 10.0, values_p);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(0)).getValue(), 9.0, 0.0);
Assert.assertEquals(f1.getFitness(c), 5.0, 0.0);
Assert.assertEquals(f2.getFitness(c), 16.0, 0.0);
}
use of org.evosuite.ga.FitnessFunction in project evosuite by EvoSuite.
the class TestBooths method testBoothsFitness.
@Test
public void testBoothsFitness() {
Problem p = new Booths();
FitnessFunction f1 = (FitnessFunction) p.getFitnessFunctions().get(0);
double[] values = { -2.0, 1.0 };
NSGAChromosome c = new NSGAChromosome(-10.0, 10.0, values);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(0)).getValue(), -2.0, 0.0);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(1)).getValue(), 1.0, 0.0);
Assert.assertEquals(f1.getFitness(c), 113.0, 0.0);
double[] values_m = { 1.0, 3.0 };
c = new NSGAChromosome(-10.0, 10.0, values_m);
Assert.assertEquals(f1.getFitness(c), 0.0, 0.0);
}
use of org.evosuite.ga.FitnessFunction in project evosuite by EvoSuite.
the class TestBooths method testBooths.
/**
* Testing NSGA-II with Booths Problem
*
* @throws IOException
* @throws NumberFormatException
*/
@Test
public void testBooths() throws NumberFormatException, IOException {
Properties.MUTATION_RATE = 1d / 2d;
ChromosomeFactory<?> factory = new RandomFactory(false, 2, -10.0, 10.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 Booths();
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.000, 0.001);
for (Chromosome chromosome : chromosomes) {
NSGAChromosome nsga_c = (NSGAChromosome) chromosome;
DoubleVariable x = (DoubleVariable) nsga_c.getVariables().get(0);
DoubleVariable y = (DoubleVariable) nsga_c.getVariables().get(1);
System.out.printf("%f,%f : %f\n", x.getValue(), y.getValue(), chromosome.getFitness(f1));
}
}
use of org.evosuite.ga.FitnessFunction in project evosuite by EvoSuite.
the class TestThreeHump method testThreeHumpFitness.
@Test
public void testThreeHumpFitness() {
Problem p = new ThreeHump();
FitnessFunction f1 = (FitnessFunction) p.getFitnessFunctions().get(0);
double[] values = { -2.0, 3.0 };
NSGAChromosome c = new NSGAChromosome(-5.0, 5.0, values);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(0)).getValue(), -2.0, 0.0);
Assert.assertEquals(((DoubleVariable) c.getVariables().get(1)).getValue(), 3.0, 0.0);
Assert.assertEquals(f1.getFitness(c), 4.87, 0.01);
}
Aggregations