Package org.encog.ml.prg.extension

Examples of org.encog.ml.prg.extension.ProgramExtensionTemplate.randomize()


      }
    }

    // now actually create the node
    final ProgramNode result = new ProgramNode(program, temp, children);
    temp.randomize(rnd, types, result, getMinConst(), getMaxConst());
    return result;
  }

  /**
   * Create a terminal node.
View Full Code Here


          + types.toString());
    }
    final ProgramNode result = new ProgramNode(program, temp,
        new ProgramNode[] {});

    temp.randomize(rnd, types, result, this.minConst, this.maxConst);
    return result;
  }

  public int determineMaxDepth(final Random rnd) {
    return this.maxDepth;
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.