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

📄 evaluateboard.java

📁 一个开源的用java开发的遗传算法的封装好的工程
💻 JAVA
字号:
/*
 * This file is part of JGAP.
 *
 * JGAP offers a dual license model containing the LGPL as well as the MPL.
 *
 * For licencing 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.gp.tictactoe;

import org.jgap.gp.*;
import org.jgap.*;
import org.jgap.gp.impl.*;

/**
 * Evaluates the board. Generates one unique number for each board position.
 *
 * @author Klaus Meffert
 * @since 3.2
 */
public class EvaluateBoard
    extends CommandGene {
  /** String containing the CVS revision. Read out via reflection!*/
  private final static String CVS_REVISION = "$Revision: 1.2 $";

  private Board m_board;

  private int m_index;

  private Class m_type;

  public EvaluateBoard(final GPConfiguration a_conf, Board a_board,
                       int a_index)
      throws InvalidConfigurationException {
    this(a_conf, a_board, a_index, 0);
  }

  public EvaluateBoard(final GPConfiguration a_conf, Board a_board,
                       int a_index, int a_subReturnType)
      throws InvalidConfigurationException {
    super(a_conf, 0, CommandGene.VoidClass, a_subReturnType, null);
    m_board = a_board;
    m_index = a_index;
  }

  public EvaluateBoard(final GPConfiguration a_conf, Board a_board,
                       Class a_type)
      throws InvalidConfigurationException {
    this(a_conf, a_board, a_type, 0, 0);
  }

  public EvaluateBoard(final GPConfiguration a_conf, Board a_board,
                       Class a_type, int a_subReturnType, int a_subChildType)
      throws InvalidConfigurationException {
    super(a_conf, 1, CommandGene.VoidClass, a_subReturnType, a_subChildType);
    m_board = a_board;
    m_index = -1;
    m_type = a_type;
  }

  public String toString() {
    if (m_index >= 0) {
      return "eval_board(" + m_index + ")";
    }
    else {
      return "eval_board(&1)";
    }
  }

  public Class getChildType(IGPProgram a_ind, int a_chromNum) {
    if (m_index < 0) {
      return m_type;
    }
    else {
      return null;
    }
  }

  /**
   * @return textual name of this command
   *
   * @author Klaus Meffert
   * @since 3.2
   */
  public String getName() {
    if (m_index >= 0) {
      return "Evaluate Board(" + m_index + ")";
    }
    else {
      return "Evaluate Board(" + m_index + ")";
    }
  }

  public void execute_void(ProgramChromosome c, int n, Object[] args) {
    check(c);
    int evaluation = 0;
    int index = 0;
    for (int x = 0; x < Board.WIDTH; x++) {
      for (int y = 0; y < Board.HEIGHT; y++) {
        // Add 1 to board value to eliminate zeros.
        // ----------------------------------------
        int boardValue = m_board.readField(x + 1, y + 1) + 1;
        // Adapt base of exponentiation to get unique values.
        // --------------------------------------------------
        evaluation += Math.pow(3 + (index * 2), (boardValue));
        index++;
      }
    }
    int memoryIndex;
    if (m_index < 0) {
      memoryIndex = c.execute_int(n, 0, args);
      /**@todo support other types than integer*/
    }
    else {
      memoryIndex = m_index;
    }
    getGPConfiguration().storeIndexedMemory(memoryIndex, new Integer(evaluation));
  }
}

⌨️ 快捷键说明

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