Package org.rlcommunity.rlglue.codec.types

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


   
    public synchronized Reward_observation_action_terminal RL_step() {
        sendEmpty(Network.kRLStep, "RL_step");

        Reward_observation_action_terminal roat = new Reward_observation_action_terminal();
        roat.terminal = network.getInt();
        roat.r = network.getDouble();
        roat.o = network.getObservation();
        roat.a = network.getAction();
View Full Code Here

TOP

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

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.