net.sourceforge.cilib.functions.continuous.unconstrained.Rastrigin Maven / Gradle / Ivy
/** __ __
* _____ _/ /_/ /_ Computational Intelligence Library (CIlib)
* / ___/ / / / __ \ (c) CIRG @ UP
* / /__/ / / / /_/ / http://cilib.net
* \___/_/_/_/_.___/
*/
package net.sourceforge.cilib.functions.continuous.unconstrained;
import net.sourceforge.cilib.functions.ContinuousFunction;
import net.sourceforge.cilib.functions.Differentiable;
import net.sourceforge.cilib.type.types.Numeric;
import net.sourceforge.cilib.type.types.Real;
import net.sourceforge.cilib.type.types.container.Vector;
import fj.F;
/**
* The Rastrigin function.
*
* Reference: X. Yao and Y. Liu and G. Liu, Evolutionary Programming Made Faster,
* IEEE Transactions on Evolutionary Computation, vol 3, number 2, pages 82--102, 1999.
*
* Characteristics:
*
* - Multimodal
* - Continuous
* - Seperable
*
*
*
* f(x) = 0; x = (0,0,...,0);
*
* x e [-5.12, 5.12];
*
* R(-5.12, 5.12)^30
*
*/
public class Rastrigin extends ContinuousFunction implements Differentiable {
private static final long serialVersionUID = 447701182683968035L;
/**
* {@inheritDoc}
*/
@Override
public Double f(Vector input) {
double tmp = 0;
for (int i = 0; i < input.size(); ++i) {
tmp += input.doubleValueOf(i) * input.doubleValueOf(i) - 10.0 * Math.cos(2 * Math.PI * input.doubleValueOf(i));
}
return 10 * input.size() + tmp;
}
/**
* {@inheritDoc}
*/
@Override
public Vector getGradient(Vector input) {
return input.map(new F() {
@Override
public Numeric f(Numeric x) {
return Real.valueOf((2.0 * x.doubleValue()) + (20 * Math.PI * Math.sin(2.0 * Math.PI * x.doubleValue())));
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy