net.sourceforge.cilib.niching.creation.AlwaysTrueNicheDetection Maven / Gradle / Ivy
/** __ __
* _____ _/ /_/ /_ Computational Intelligence Library (CIlib)
* / ___/ / / / __ \ (c) CIRG @ UP
* / /__/ / / / /_/ / http://cilib.net
* \___/_/_/_/_.___/
*/
package net.sourceforge.cilib.niching.creation;
import net.sourceforge.cilib.algorithm.population.SinglePopulationBasedAlgorithm;
import net.sourceforge.cilib.entity.Entity;
public class AlwaysTrueNicheDetection extends NicheDetection {
@Override
public Boolean f(SinglePopulationBasedAlgorithm a, Entity b) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy