net.sourceforge.cilib.functions.continuous.Shir Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cilib-library Show documentation
Show all versions of cilib-library Show documentation
A library of composable components enabling simpler Computational Intelligence
The newest version!
/** __ __
* _____ _/ /_/ /_ Computational Intelligence Library (CIlib)
* / ___/ / / / __ \ (c) CIRG @ UP
* / /__/ / / / /_/ / http://cilib.net
* \___/_/_/_/_.___/
*/
package net.sourceforge.cilib.functions.continuous;
import net.sourceforge.cilib.functions.ContinuousFunction;
import net.sourceforge.cilib.type.types.container.Vector;
/**
* The Damavandi function obtained from O.M. Shir and T. Baeck,
* "Dynamic Niching in Evolution Strategies with Covariance Matrix Adaptation"
*
* Global Maximin: f(x1,...,xn) = 1
*
* Characteristics:
*
* - Multimodal
*
*
* Maximum: 1.0
* R(0, 1)^30
*
*/
public class Shir extends ContinuousFunction {
private static final long serialVersionUID = 8157687561496975789L;
private final double l1, l2, l3, l4, l5, sharpness;
/**
* Create an instance of the function. The domain is set to "R(0, 1)^30" by default.
*/
public Shir() {
l1 = 1.0;
l2 = 1.0;
l3 = 1.0;
l4 = 1.0;
l5 = 1.0;
sharpness = 2;
}
/**
* {@inheritDoc}
*/
@Override
public Double f(Vector input) {
double sinTerm;
double expTerm;
double product = 1.0;
for (int i = 0; i < input.size(); i++) {
sinTerm = 1.0;
for (int k = 1; k <= sharpness; k++) {
sinTerm *= Math.sin(l1 * Math.PI * input.doubleValueOf(i) + l2);
}
expTerm = Math.exp(-l3 * ((input.doubleValueOf(i) - l4) / l5) * ((input.doubleValueOf(i) - l4) / l5));
product *= (sinTerm * expTerm);
}
return product;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy