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

📄 tspengine.java.svn-base

📁 Traveling Salesman Problem Java Genetic Algorithm Solution, Hope all enjoy it.
💻 SVN-BASE
字号:
/*
 * $Source: f:/cvs/prgm/tsp/src/org/saiko/ai/genetics/tsp/TSPEngine.java,v $
 * $Id: TSPEngine.java,v 1.2 2005/08/23 23:18:04 dsaiko Exp $
 * $Date: 2005/08/23 23:18:04 $
 * $Revision: 1.2 $
 * $Author: dsaiko $
 *
 * Traveling Salesman Problem genetic algorithm.
 * This source is released under GNU public licence agreement.
 * dusan@saiko.cz
 * http://www.saiko.cz/ai/tsp/
 * 
 * Change log:
 * $Log: TSPEngine.java,v $
 * Revision 1.2  2005/08/23 23:18:04  dsaiko
 * Finished.
 *
 * Revision 1.1  2005/08/12 23:52:17  dsaiko
 * Initial revision created
 *
 */

package org.saiko.ai.genetics.tsp;

/**
 * @author Dusan Saiko (dusan@saiko.cz)
 * Last change $Date: 2005/08/23 23:18:04 $
 *
 * Interface definition for Traveling salesman genetic engine
 */
public interface TSPEngine {
   
   /** String containing the CVS revision. **/
   public final static String CVS_REVISION = "$Revision: 1.2 $";

   
   /**
    * Initialize engine for given population size and list of cities.
    * Can be calledseveral times to reinitialize engine.
    * @param appConfiguration
    * @param cities
    * @see TSPConfiguration
    */
   public void initialize(TSPConfiguration appConfiguration, City cities[]);
   
   
   /**
    * @return current population size from the engine. the population could be growing.
    */
   public int  getPopulationSize();
   
   /**
    * @return the best chromosome from the population
    */
   public TSPChromosome getBestChromosome();
   
   /**
    * Make new generation of population.
    * the genetics principles are left to responsibility of engine
    */
   public void nextGeneration();
}

⌨️ 快捷键说明

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