RLPark 1.0.0
Reinforcement Learning Framework in Java

ConstantGamma.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.horde.functions;
00002 
00003 public class ConstantGamma implements GammaFunction {
00004   private static final long serialVersionUID = -4493833693286307798L;
00005   private final double gamma;
00006 
00007   public ConstantGamma(double gamma) {
00008     this.gamma = gamma;
00009   }
00010 
00011   @Override
00012   public double gamma() {
00013     return gamma;
00014   }
00015 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark