Package fr.irit.halterego.ggp_agent.rlcpp

Examples of fr.irit.halterego.ggp_agent.rlcpp.State


    }
   
    @Override
    public void learn(RState state, RAction action, RState result, double reward, Agent learner)
    {
        State vanstate = new State();
        vanstate.discreteState = id(state);
        vanstate.discrete = true;
       
        State nextState = null;
        if(result != null)
        {
            nextState = new State();
            nextState.discrete = true;
            nextState.discreteState = id(result);
        }
       
        Action vanactions[] = new Action[2];
View Full Code Here


        {
            resizefor(action);
        }
       
        Action vanaction = new Action();
        State vanstate = new State();
        vanstate.discreteState = id(state);
        vanstate.discrete = true;
        RAction action;
        boolean legal = false;
        do
View Full Code Here

TOP

Related Classes of fr.irit.halterego.ggp_agent.rlcpp.State

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.