Package org.rlcommunity.rlglue.codec.types

Examples of org.rlcommunity.rlglue.codec.types.Observation


    public synchronized Observation RL_env_start() {
        numSteps = 1;
        isTerminal = false;
        totalReward = 0.0d;

        Observation o = E.env_start();
        if (o == null) {
            System.err.println("o came back as null from RL_start");
        }
        return o;
    }
View Full Code Here


        obsact.a = network.getAction();
        return obsact;
    }
    public synchronized Observation RL_env_start() {
        sendEmpty(Network.kRLEnvStart, "RL_env_start");
        Observation obs = new Observation();

        obs = network.getObservation();
        return obs;
    }
View Full Code Here

TOP

Related Classes of org.rlcommunity.rlglue.codec.types.Observation

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.