Package tetrisexample.util

Source Code of tetrisexample.util.AgentThread

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package tetrisexample.util;

//import org.rlcommunity.environments.competition2009.Tetrlais.StandardTetrisAgent;
import tetrisexample.*;
import org.rlcommunity.rlglue.codec.util.AgentLoader;

/**
*
* @author szityu
*/
public class AgentThread extends Thread {

    @Override
    public void run()
    {
  System.out.println("Running the Q-Learning Agent Alpha version!!!");        
        QTetrisAgent agent = new QTetrisAgent();
        //SampleTetrisAgent agent = new SampleTetrisAgent();
        //RandomAgent agent = new RandomAgent();
        AgentLoader agentloader = new AgentLoader(agent);
        agentloader.run();
   }
}
TOP

Related Classes of tetrisexample.util.AgentThread

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.