org.evosuite.ga.stoppingconditions.MaxFitnessEvaluationsStoppingCondition 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.ga.stoppingconditions;
import org.evosuite.Properties;
import org.evosuite.ga.Chromosome;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Stop search after a predefined maximum search depth
*
* @author Gordon Fraser
*/
public class MaxFitnessEvaluationsStoppingCondition extends StoppingConditionImpl {
private static final Logger logger = LoggerFactory.getLogger(MaxFitnessEvaluationsStoppingCondition.class);
private static final long serialVersionUID = 208241490252275613L;
/** Maximum number of evaluations */
protected long maxEvaluations = Properties.SEARCH_BUDGET;
/** Maximum number of iterations */
protected static long currentEvaluation = 0;
/**
* {@inheritDoc}
*
* Stop when maximum number of fitness evaluations has been reached
*/
@Override
public boolean isFinished() {
logger.info("Current number of fitness_evaluations: " + currentEvaluation);
return currentEvaluation >= maxEvaluations;
}
/**
* {@inheritDoc}
*
* Keep track of the number of fitness evaluations
*/
@Override
public void fitnessEvaluation(Chromosome individual) {
currentEvaluation++;
}
/**
* Static getter method
*
* @return a long.
*/
public static long getNumFitnessEvaluations() {
return currentEvaluation;
}
/**
* {@inheritDoc}
*
* At the end, reset
*/
@Override
public void reset() {
currentEvaluation = 0;
}
/* (non-Javadoc)
* @see org.evosuite.ga.StoppingCondition#setLimit(int)
*/
/** {@inheritDoc} */
@Override
public void setLimit(long limit) {
maxEvaluations = limit;
}
/** {@inheritDoc} */
@Override
public long getLimit() {
return maxEvaluations;
}
/* (non-Javadoc)
* @see org.evosuite.ga.StoppingCondition#getCurrentValue()
*/
/** {@inheritDoc} */
@Override
public long getCurrentValue() {
return currentEvaluation;
}
/** {@inheritDoc} */
@Override
public void forceCurrentValue(long value) {
currentEvaluation = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy