objectivefunction.java
来自「模拟退火是一种启发式算法」· Java 代码 · 共 22 行
JAVA
22 行
package org.theblueplanet.annealing;
/**
* This interface must be implemented by all the classes that encapsulate
* a function that is to be minimized by JSimul
*
* @author Charles M間nin
* @since October 29, 2001
* @version 1.0
*/
public interface ObjectiveFunction {
/**
* Returns the number of dimensions for the objective function implemented
*
* @return The Ndim value
*/
public int getNdim();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?