Examples of QTable


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

        {
            String qtable_path = args[0];
            String match_directory = args[1];
            String playername = args[2];
            
            QTable policy = QTable.loadFromFile(qtable_path);
            SuccessRate r = evaluate(policy,match_directory,playername);
            System.out.println(r.getRate());
        }
    }
View Full Code Here

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

        this.gamma = gamma;
    }
   
    public QTable buildQTable(String gdl_filename, ProgressTracker tracker) throws IOException
    {
        QTable table = new QTable();
       
        GameReasoner reasoner = GameReasoner.fromGameFile(gdl_filename);
       
        List<String> roles = new ArrayList<String>();
        List<TermObject> roles_terms = reasoner.getGameInfo().getRoles();
View Full Code Here

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

                        catch (InterruptedException e) { }
                    }
                }
            }.start();
           
            QTable table = gen.buildQTable(gdl_filename, tracker);
           
            tracker.print();
            long end = System.currentTimeMillis();
            System.out.println("Total time : " + (end-start)/1000.0);
           
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.