Package org.encog.ml.ea.rules

Examples of org.encog.ml.ea.rules.BasicRuleHolder


      final CalculateScore theScoreFunction) {

    this.population = thePopulation;
    this.scoreFunction = theScoreFunction;
    this.selection = new TournamentSelection(this, 4);
    this.rules = new BasicRuleHolder();

    // set the score compare method
    if (theScoreFunction.shouldMinimize()) {
      this.selectionComparator = new MinimizeAdjustedScoreComp();
      this.bestComparator = new MinimizeScoreComp();
View Full Code Here

TOP

Related Classes of org.encog.ml.ea.rules.BasicRuleHolder

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.