⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 samplefitnessfunction.java

📁 jGAp 遗传算法 提不错的一款软件 最新的更新
💻 JAVA
字号:
/*
 * This file is part of JGAP.
 *
 * JGAP offers a dual license model containing the LGPL as well as the MPL.
 *
 * For licensing information please see the file license.txt included with JGAP
 * or have a look at the top of class org.jgap.Chromosome which representatively
 * includes the JGAP license policy applicable for any file delivered with JGAP.
 */
package examples.grid.mathProblemDistributed;

import java.util.*;

import org.jgap.gp.*;
import org.jgap.gp.terminal.*;
import org.apache.log4j.*;

/**
 * Fitness function for our example.
 *
 * @author Klaus Meffert
 * @since 3.2
 */
public class SampleFitnessFunction
    extends GPFitnessFunction {
  /** String containing the CVS revision. Read out via reflection!*/
  private final static String CVS_REVISION = "$Revision: 1.6 $";

  private static Logger log = Logger.getLogger(SampleFitnessFunction.class);

  static Variable vx;

  static Float[] x = new Float[20]; /**@todo initialize*/

  static float[] y = new float[20]; /**@todo initialize*/

  public SampleFitnessFunction() {
    Random random = new Random();
    // Randomly initialize function data (X-Y table) for x^4+x^3+x^2-x
    // ---------------------------------------------------------------
    for (int i = 0; i < 20; i++) {
      float f = 8.0f * (random.nextFloat() - 0.3f);
      x[i] = new Float(f);
      y[i] = f * f * f * f + f * f * f + f * f - f;
      log.debug(i + ") " + x[i] + "   " + y[i]);
    }
  }

  protected double evaluate(final IGPProgram a_subject) {
    return computeRawFitness(a_subject);
  }

  public double computeRawFitness(final IGPProgram ind) {
    double error = 0.0f;
    Object[] noargs = new Object[0];
    Variable vx = ind.getGPConfiguration().getVariable("X");
    if (vx == null) {
      log.error("Variable X not initialized correctly!");
      return GPFitnessFunction.MAX_FITNESS_VALUE;
    }
    for (int i = 0; i < 20; i++) {
      vx.set(x[i]);
      try {
        double result = ind.execute_float(0, noargs);
        error += Math.abs(result - y[i]);
      } catch (ArithmeticException ex) {
        System.out.println("x = " + x[i].floatValue());
        System.out.println(ind);
        throw ex;
      }
    }
    if (error < 0.000001) {
      error = 0.0d;
    }
    return error;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -