RLPark 1.0.0
Reinforcement Learning Framework in Java

GVF.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms.predictions.td;
00002 
00003 import rlpark.plugin.rltoys.math.vector.RealVector;
00004 
00005 public interface GVF extends OffPolicyTD {
00006   double update(double pi_t, double b_t, RealVector x_t, RealVector x_tp1, double r_tp1, double gamma_tp1, double z_tp1);
00007 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark