for (int i1 = 0; i1 < hashRounds; i1++) {
int[] hashes = hf.hash(data.get(i1), m, k);
}
long end_hash = System.nanoTime();
speed.addValue((1.0 * end_hash - start_hash) / 1000000);
}
System.out.println("HashMethod : " + hm + ", " + " hashes = " + hashesPerRound + ", size = " + m + ", hashes = "
+ k + ", rounds = " + rounds);
//System.out.println(speed);