Package org.encog.parse.expression.epl

Examples of org.encog.parse.expression.epl.ParseEPL


   *
   * @param code The code to compile.
   * @return The root node.
   */
  public ProgramNode compileEPL(final String code) {
    final ParseEPL parser = new ParseEPL(this);
    this.rootNode = parser.parse(code);
    return this.rootNode;
  }
View Full Code Here

TOP

Related Classes of org.encog.parse.expression.epl.ParseEPL

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.