All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.cilib.functions.continuous.unconstrained.Himmelblau 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.type.types.container.Vector;

import com.google.common.base.Preconditions;

/**
 * The Himmelblau function.
 *
 * 

Title: CILib

*

Description: CILib (Computational Intelligence Library)

*

Copyright: Copyright (c) 2004

* * Characteristics: *
    *
  • Only defined for 2 dimensions
  • *
  • Multimodal
  • *
  • Continuous
  • *
* * R(-6, 6)^2 * * @version 1.0 */ public class Himmelblau extends ContinuousFunction { private static final long serialVersionUID = 7323733640884766707L; /** * {@inheritDoc} */ @Override public Double f(Vector input) { Preconditions.checkArgument(input.size() == 2, "Himmelblau function is only defined for 2 dimensions"); double x = input.doubleValueOf(0); double y = input.doubleValueOf(1); return Math.pow((x * x + y - 11), 2) + Math.pow((x + y * y - 7), 2); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy