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

📄 allformulafindertests.java

📁 用java实现遗传算法的调用
💻 JAVA
字号:
package examples.functionFinder.test;

import junit.framework.*;

/**
 * Runs all tests for formula finder example.<p>
 * Not included with other test suites (ALlTests) as this relies on a third-
 * party library.
 *
 * @author Klaus Meffert
 * @since 2.2
 */
public class AllFormulaFinderTests extends TestSuite {

  /** String containing the CVS revision. Read out via reflection!*/
  private static final String CVS_REVISION = "$Revision: 1.2 $";

  public AllFormulaFinderTests(String name) {
    super(name);
  }

  public static Test suite() {
    TestSuite suite = new TestSuite();
    suite.addTestSuite(FunctionBuilderTest.class);
    suite.addTestSuite(FitnessValueTest.class);
    suite.addTestSuite(GeneExtractorTest.class);
    return suite;
  }
}

⌨️ 快捷键说明

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