RLPark 1.0.0
Reinforcement Learning Framework in Java

StateNode.java

Go to the documentation of this file.
00001 package rlpark.plugin.robot.internal.statemachine;
00002 
00003 
00004 public interface StateNode<T> {
00005   void start();
00006 
00007   void step(T step);
00008 
00009   boolean isDone();
00010 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark