Package stanfordlogic.jocular.rlcpp

Examples of stanfordlogic.jocular.rlcpp.World


   
    public Action agent_start(Observation observation)
    {
        // Inicializa el atributo w de tipo World_ con el que se inicializaran
        // los algoritmos
        w = new World();
        w.setNumberOfActions(num_action);
        w.setNumberOfStates(observation.intArray[1]);
        // Se lee de fichero el tipo de algoritmo que se va usar y se almacena
        // en funcion_apr
        loadConfigAgent("config_agent.cfg");
View Full Code Here

TOP

Related Classes of stanfordlogic.jocular.rlcpp.World

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.