Example #1
0
 /** Runs the experiment to steady state, but no further. */
 public void runToSteadyState() {
   Iterator<Statistic> stats = this.getStats().getAllStats();
   while (stats.hasNext()) {
     Statistic stat = stats.next();
     stat.setJustBins(true);
   }
   this.stopAtSteadyState = true;
   this.run();
 }