RLPark 1.0.0
Reinforcement Learning Framework in Java

PredictionProblem.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.problems;
00002 
00003 import rlpark.plugin.rltoys.math.vector.RealVector;
00004 
00005 public interface PredictionProblem {
00006   int inputDimension();
00007 
00008   boolean update();
00009 
00010   double target();
00011 
00012   RealVector input();
00013 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark