Package fr.irit.halterego.rrl_ggp.eval

Examples of fr.irit.halterego.rrl_ggp.eval.XMLMatch


   
    public static SuccessRate evaluate(QTable qtable, String match_dir, String playername)
    {
        if(new File(match_dir+"/finalstate.xml").exists())
        {
            XMLMatch match = new XMLMatch(match_dir, playername);
            int total = match.getTransitions().size();
            int successes = qtable.countOptimalActions(match);
            return new SuccessRate(successes,total);
        }
        else
        {
View Full Code Here

TOP

Related Classes of fr.irit.halterego.rrl_ggp.eval.XMLMatch

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.