Package org.ggp.base.util.propnet.factory.converter

Examples of org.ggp.base.util.propnet.factory.converter.PropNetConverter


  public static PropNet create(List<Gdl> description)
  {
        try {
            List<GdlRule> flatDescription = new PropNetFlattener(description).flatten();
            GamerLogger.log("StateMachine", "Converting...");
            return new PropNetConverter().convert(Role.computeRoles(description), flatDescription);
        } catch(Exception e) {
            GamerLogger.logStackTrace("StateMachine", e);
            return null;
        }
  }
View Full Code Here

TOP

Related Classes of org.ggp.base.util.propnet.factory.converter.PropNetConverter

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.