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

📄 chcdriver.java

📁 机器学习算法中的CHC算法
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -