RLPark 1.0.0
Reinforcement Learning Framework in Java

VectorPool.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.math.vector.pool;
00002 
00003 import rlpark.plugin.rltoys.math.vector.MutableVector;
00004 import rlpark.plugin.rltoys.math.vector.RealVector;
00005 
00006 
00007 public interface VectorPool {
00008   MutableVector newVector();
00009 
00010   MutableVector newVector(RealVector v);
00011 
00012   void releaseAll();
00013 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark