igetlocalcostengine.java

来自「用于求解TSP(Traveling salesman problem」· Java 代码 · 共 18 行

JAVA
18
字号
/**
 * Description: The interface for get cost between two nodes
 *
 * @ Author        Create/Modi     Note
 * Xiaofeng Xie    Apr 9, 2005
 * Xiaofeng Xie    Apr 28, 2006    MAOS-TSP Beta 1.1.002
 *
 * @version 1.0
 * @Since MAOS1.0
 */


package implement.TSP.represent;

public interface IGetLocalCostEngine {
  public int getLocalCost(int nodeA, int nodeB);
}

⌨️ 快捷键说明

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