org.evosuite.coverage.FitnessLogger Maven / Gradle / Ivy
The newest version!
/**
* Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
* contributors
*
* This file is part of EvoSuite.
*
* EvoSuite is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3.0 of the License, or
* (at your option) any later version.
*
* EvoSuite is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EvoSuite. If not, see .
*/
/**
*
*/
package org.evosuite.coverage;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.evosuite.Properties;
import org.evosuite.ga.Chromosome;
import org.evosuite.ga.metaheuristics.GeneticAlgorithm;
import org.evosuite.ga.metaheuristics.SearchListener;
import org.evosuite.ga.stoppingconditions.MaxStatementsStoppingCondition;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* FitnessLogger class.
*
* @author Gordon Fraser
*/
public class FitnessLogger implements SearchListener {
private static Logger logger = LoggerFactory.getLogger(FitnessLogger.class);
private final List evaluations_history = new ArrayList();
private final List statements_history = new ArrayList();
private final List fitness_history = new ArrayList();
private final List size_history = new ArrayList();
private String name = null;
private int evaluations = 0;
/* (non-Javadoc)
* @see org.evosuite.ga.SearchListener#searchStarted(org.evosuite.ga.FitnessFunction)
*/
/** {@inheritDoc} */
@Override
public void searchStarted(GeneticAlgorithm> algorithm) {
evaluations = 0;
evaluations_history.clear();
statements_history.clear();
fitness_history.clear();
size_history.clear();
File dir = new File(Properties.REPORT_DIR + "/goals/");
dir.mkdirs();
name = Properties.REPORT_DIR
+ "/goals/"
+ algorithm.getFitnessFunction().toString().replace(" ", "_").replace(":",
"-").replace("(",
"").replace(")",
"");
}
/* (non-Javadoc)
* @see org.evosuite.ga.SearchListener#iteration(java.util.List)
*/
/** {@inheritDoc} */
@Override
public void iteration(GeneticAlgorithm> algorithm) {
if (algorithm.getPopulation().isEmpty())
return;
evaluations_history.add(evaluations);
statements_history.add(MaxStatementsStoppingCondition.getNumExecutedStatements());
fitness_history.add(algorithm.getBestIndividual().getFitness());
size_history.add(algorithm.getBestIndividual().size());
}
/* (non-Javadoc)
* @see org.evosuite.ga.SearchListener#searchFinished(java.util.List)
*/
/** {@inheritDoc} */
@Override
public void searchFinished(GeneticAlgorithm> algorithm) {
if (name == null)
return;
File f = new File(name);
try {
BufferedWriter out = new BufferedWriter(new FileWriter(f, true));
out.write("Iteration,Evaluations,Statements,Fitness,Size\n");
for (int i = 0; i < fitness_history.size(); i++) {
out.write(i + ",");
out.write(evaluations_history.get(i) + ",");
out.write(statements_history.get(i) + ",");
out.write(fitness_history.get(i) + ",");
out.write(size_history.get(i) + "\n");
}
out.close();
} catch (IOException e) {
logger.error("Could not open csv file: " + e);
}
}
/* (non-Javadoc)
* @see org.evosuite.ga.SearchListener#fitnessEvaluation(org.evosuite.ga.Chromosome)
*/
/** {@inheritDoc} */
@Override
public void fitnessEvaluation(Chromosome individual) {
evaluations++;
}
/* (non-Javadoc)
* @see org.evosuite.ga.SearchListener#modification(org.evosuite.ga.Chromosome)
*/
/** {@inheritDoc} */
@Override
public void modification(Chromosome individual) {
// TODO Auto-generated method stub
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy