RLPark 1.0.0
Reinforcement Learning Framework in Java
|
00001 package rlpark.plugin.rltoys.math.vector; 00002 00003 public interface SparseRealVector extends MutableVector, SparseVector { 00004 @Override 00005 SparseRealVector clear(); 00006 00007 void removeEntry(int index); 00008 }