RLPark 1.0.0
Reinforcement Learning Framework in Java

CritterbotProblem.java

Go to the documentation of this file.
00001 package rlpark.plugin.critterbot;
00002 
00003 import rlpark.plugin.critterbot.actions.CritterbotAction;
00004 import rlpark.plugin.rltoys.envio.observations.Legend;
00005 import zephyr.plugin.core.api.labels.Labeled;
00006 import zephyr.plugin.core.api.synchronization.Closeable;
00007 
00008 public interface CritterbotProblem extends Closeable, Labeled {
00009   CritterbotAction lastAction();
00010 
00011   double[] lastReceivedObs();
00012 
00013   Legend legend();
00014 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark