RLPark 1.0.0
Reinforcement Learning Framework in Java

State.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.problems.stategraph02;
00002 
00003 import java.io.Serializable;
00004 
00005 public class State implements Serializable {
00006   private static final long serialVersionUID = 1768484355505678751L;
00007   public final String name;
00008   public final double reward;
00009 
00010   public State(String name, double reward) {
00011     this.name = name;
00012     this.reward = reward;
00013   }
00014 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark