Go to the documentation of this file.00001 package rlpark.plugin.rltoys.algorithms.representations.tilescoding.hashing;
00002
00003 import java.io.Serializable;
00004
00005 public interface Hashing extends Serializable {
00006 int memorySize();
00007
00008 int hash(Tiling tiling, int[] inputs);
00009 }