RLPark 1.0.0
Reinforcement Learning Framework in Java

LTUAdaptiveDensity.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.algorithms.representations.ltu.units;
00002 
00003 import java.util.Random;
00004 
00005 public interface LTUAdaptiveDensity extends LTU {
00006   void increaseDensity(Random random, double[] inputVector);
00007 
00008   void decreaseDensity(Random random, double[] inputVector);
00009 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark