Examples of DoubleMonitor


Examples of jcgp.backend.parameters.monitors.DoubleMonitor

   * @param resources a reference to the experiment's resources.
   */
  protected Problem(Resources resources) {
    super(resources);
   
    maxFitness = new DoubleMonitor(0, "Max fitness");
    bestFitness = new DoubleMonitor(0, "Best fitness");
    registerParameters(maxFitness, bestFitness);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.