chcdriver.java

来自「机器学习算法中的CHC算法」· Java 代码 · 共 19 行

JAVA
19
字号
package chc;import java.io.IOException;/** CHCDriver is the class that starts the CHC System. Specific arguments  * must be passed into the System in order for CHC to work properly.  * These arguments are documented in a Readme file included with this  * directory and also pointed out to the user by runtime error feedback.  * It is possible to run CHC for another module. */public class CHCDriver {  /** Constructs CHC passing the command line arguments and then    * runs the program.  */  public static void main(String[] args) throws IOException {    CHC chc = new CHC(args);    chc.runGA("new");  }}

⌨️ 快捷键说明

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