/** * Copyright (C) 2010-2017 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 <http://www.gnu.org/licenses/>. */ package org.evosuite.testcase; import org.evosuite.Properties; import org.evosuite.ga.Chromosome; import org.evosuite.ga.ReplacementFunction; /** * <p> * TestCaseReplacementFunction class. * </p> * * @author Gordon Fraser */ public class TestCaseReplacementFunction extends ReplacementFunction { private static final long serialVersionUID = 2894768695219052674L; /** * <p> * Constructor for TestCaseReplacementFunction. * </p> * * @param maximize * a boolean. */ public TestCaseReplacementFunction(boolean maximize) { super(maximize); } /** * <p> * Constructor for TestCaseReplacementFunction. * </p> */ public TestCaseReplacementFunction() { super(false); } /** * <p> * getLengthSum * </p> * * @param chromosome1 * a {@link org.evosuite.testcase.ExecutableChromosome} object. * @param chromosome2 * a {@link org.evosuite.testcase.ExecutableChromosome} object. * @return a int. */ public int getLengthSum(ExecutableChromosome chromosome1, ExecutableChromosome chromosome2) { return chromosome1.size() + chromosome2.size(); } /** {@inheritDoc} */ @Override public boolean keepOffspring(Chromosome parent1, Chromosome parent2, Chromosome offspring1, Chromosome offspring2) { int cmp = compareBestOffspringToBestParent(parent1, parent2, offspring1, offspring2); if (Properties.CHECK_PARENTS_LENGTH) { int offspringLength = getLengthSum((ExecutableChromosome) offspring1, (ExecutableChromosome) offspring2); int parentLength = getLengthSum((ExecutableChromosome) parent1, (ExecutableChromosome) parent2); //if equivalent, only accept if it does not increase the length if (cmp == 0 && offspringLength <= parentLength) { return true; } else { if (maximize) { return cmp > 0; } else { return cmp < 0; } } } else { //default check if (maximize) { return cmp >= 0; } else { return cmp <= 0; } } } }