RLPark 1.0.0
Reinforcement Learning Framework in Java

ProjectorFactory.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.agents.representations;
00002 
00003 import java.io.Serializable;
00004 
00005 import rlpark.plugin.rltoys.algorithms.functions.states.Projector;
00006 import rlpark.plugin.rltoys.problems.RLProblem;
00007 
00008 public interface ProjectorFactory extends Serializable {
00009   Projector createProjector(long seed, RLProblem problem);
00010 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark