Package jcgp.backend.statistics

Examples of jcgp.backend.statistics.StatisticsLogger


   * the current generation and run parameters to 1 and prints
   * a complete list of the experiment's parameters.
   *
   */
  public void reset() {
    statistics = new StatisticsLogger();
    resources.setArity(problem.getFunctionSet().getMaxArity());
    if (resources.arity() < 1) {
      resources.println("[CGP] Error: arity is smaller than 1. Check that at least one function is enabled");
      return;
    }
View Full Code Here

TOP

Related Classes of jcgp.backend.statistics.StatisticsLogger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.