Example #1
0
 private void eatMemory(File foFile, int runRepeats, int replicatorRepeats) throws Exception {
   stats = new Stats();
   for (int i = 0; i < runRepeats; i++) {
     eatMemory(i, foFile, replicatorRepeats);
     stats.progress(i, runRepeats);
   }
   stats.dumpFinalStats();
   System.out.println(stats.getGoogleChartURL());
 }